From 0e4353a368abfcedea4ebe4345cf7604bb61d238 Mon Sep 17 00:00:00 2001 From: tison Date: Tue, 12 Nov 2024 18:40:57 +0800 Subject: [PATCH] chore: fix typo in lib.rs (#2536) --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 685d9ab364..b46ffd6a1a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -304,7 +304,7 @@ impl NixPath for [u8] { F: FnOnce(&CStr) -> T, { // The real PATH_MAX is typically 4096, but it's statistically unlikely to have a path - // longer than ~300 bytes. See the the PR description to get stats for your own machine. + // longer than ~300 bytes. See the PR description to get stats for your own machine. // /~https://github.com/nix-rust/nix/pull/1656 // // By being smaller than a memory page, we also avoid the compiler inserting a probe frame: