Skip to content

Commit 959ed52

Browse files
committed
Add missing quite in large_include_file example
1 parent c80cd4d commit 959ed52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/large_include_file.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ declare_clippy_lint! {
1919
/// ### Example
2020
/// ```rust,ignore
2121
/// let included_str = include_str!("very_large_file.txt");
22-
/// let included_bytes = include_bytes!("very_large_file.txt);
22+
/// let included_bytes = include_bytes!("very_large_file.txt");
2323
/// ```
2424
///
2525
/// Instead, you can load the file at runtime:

0 commit comments

Comments
 (0)