We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 717ab43 commit 8f0a600Copy full SHA for 8f0a600
src/dir.rs
@@ -305,7 +305,7 @@ impl Entry {
305
#[cfg(all(target_os = "linux", target_arch = "x86_64"))]
306
///PLEASE REMOVE THESE COMMENTS (OBVIOUSLY WHEN DONE))
307
/// This utilises a constant-time constant function strlen implementation that's faster than `libc::strlen`` (std library internal implementation)
308
- /// The function used is described at the bottom of the file. Benchmarks at
+ /// The function used is described at the bottom of the file.
309
pub const fn file_name(&self) -> &ffi::CStr {
310
let str_length = unsafe { dirent_const_time_strlen(&self.0)+1 };
311
unsafe{
0 commit comments