Skip to content

Commit

Permalink
lint: Fix unnecessary raw string
Browse files Browse the repository at this point in the history
  • Loading branch information
zurawiki committed Sep 29, 2023
1 parent d06087e commit 8b5dc54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiktoken-rs/benches/locking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
extern crate test;

use tiktoken_rs::{cl100k_base, cl100k_base_singleton};
static CONTENT: &str = r#"Hello world"#;
static CONTENT: &str = "Hello world";

#[bench]
fn bench_cl100k_singleton_roundtrip(b: &mut test::Bencher) {
Expand Down

0 comments on commit 8b5dc54

Please sign in to comment.