Skip to content

Commit

Permalink
Update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
d0rianb committed Dec 14, 2023
1 parent ecdb82c commit 6af1ab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/load_file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ extern crate rtf_parser;
use rtf_parser::{Lexer, Parser};

fn main() {
let rtf_text = include_str!("/Users/dorian/Downloads/file-sample_1MB.rtf");
let rtf_text = include_str!("../resources/tests/test-file.rtf");
let tokens = Lexer::scan(rtf_text);
let doc = Parser::new(tokens).parse();
}

0 comments on commit 6af1ab8

Please sign in to comment.