zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit a0a50955f080bd5576ef43cd8b56466d0d4cbd20 (tree)
parent 4f04759c874d5fd41c7cadeb974b4459559bc2a7
Author: r00ster91 <r00ster91@proton.me>
Date:   Sun, 23 Oct 2022 18:57:39 +0200

docs(std.fs.path.extension): correct arrow alignment

Diffstat:
Mlib/std/fs/path.zig | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/lib/std/fs/path.zig b/lib/std/fs/path.zig @@ -1257,14 +1257,14 @@ fn testRelativeWindows(from: []const u8, to: []const u8, expected_output: []cons /// Files that end with `.`, or that start with `.` and have no other `.` in their name, /// are considered to have no extension. /// Examples: -/// - `"main.zig"` ⇒ `".zig"` -/// - `"src/main.zig"` ⇒ `".zig"` -/// - `".gitignore"` ⇒ `""` -/// - `".image.png"` ⇒ `".png"` -/// - `"keep."` ⇒ `"."` -/// - `"src.keep.me"` ⇒ `".me"` +/// - `"main.zig"` ⇒ `".zig"` +/// - `"src/main.zig"` ⇒ `".zig"` +/// - `".gitignore"` ⇒ `""` +/// - `".image.png"` ⇒ `".png"` +/// - `"keep."` ⇒ `"."` +/// - `"src.keep.me"` ⇒ `".me"` /// - `"/src/keep.me"` ⇒ `".me"` -/// - `"/src/keep.me/"` ⇒ `".me"` +/// - `"/src/keep.me/"` ⇒ `".me"` /// The returned slice is guaranteed to have its pointer within the start and end /// pointer address range of `path`, even if it is length zero. pub fn extension(path: []const u8) []const u8 { @@ -1275,7 +1275,7 @@ pub fn extension(path: []const u8) []const u8 { } fn testExtension(path: []const u8, expected: []const u8) !void { - try std.testing.expectEqualStrings(expected, extension(path)); + try testing.expectEqualStrings(expected, extension(path)); } test "extension" {