Skip to content

Commit 95f8b26

Browse files
committed
Auto merge of #8767 - xFrednet:8765-fix-doc-example, r=camsteffen
Add missing quite in `large_include_file` example Roses are red, violets are blue, this fix, was simple to do Closes: #8765 changelog: None
2 parents 32fe476 + 959ed52 commit 95f8b26

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)