]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/large_include_file.rs
Auto merge of #9870 - koka831:unformat-unused-rounding, r=Jarcho
[rust.git] / clippy_lints / src / large_include_file.rs
index 8bef13c682dbfe86c92da5ba743fcc1af6efa975..84dd61a1e4b0d6cb219ca9acdf933667fcab632a 100644 (file)
     /// let included_bytes = include_bytes!("very_large_file.txt");
     /// ```
     ///
-    /// Instead, you can load the file at runtime:
+    /// Use instead:
     /// ```rust,ignore
     /// use std::fs;
     ///
+    /// // You can load the file at runtime
     /// let string = fs::read_to_string("very_large_file.txt")?;
     /// let bytes = fs::read("very_large_file.txt")?;
     /// ```