authorgravatar for sorairolake@protonmail.chShun Sakai <sorairolake@protonmail.ch> 2025-01-22 23:37:04+09:00
committergravatar for sorairolake@protonmail.chShun Sakai <sorairolake@protonmail.ch> 2025-01-22 23:37:04+09:00
log30fc1012ae28afcff6178997287bb7daeef077f6
treeb823705af9ba3458e865a08419d1d6edce486c24
parenta3ad0a2f771e2c6b4b71d694ff4ea8fc1aa26479

std.zip: Replace invisible doc comments with top-level doc comments

I think it would be better if this invisible doc comments is top-level doc comments rather than doc comments. Because it is at the start of a source file. This makes the doc comments visible. However, the last paragraph replaces doc comments with normal comments. This is because I thought that normal comments would be more appropriate than top-level doc comments given the context of the last paragraph.

1 files changed, 5 insertions(+), 5 deletions(-)

lib/std/zip.zig+5-5
...@@ -1,8 +1,8 @@...@@ -1,8 +1,8 @@
1/// The .ZIP File Format Specification is found here:1//! The .ZIP File Format Specification is found here:
2/// https://pkwaredownloads.blob.core.windows.net/pem/APPNOTE.txt2//! https://pkwaredownloads.blob.core.windows.net/pem/APPNOTE.txt
3///3
4/// Note that this file uses the abbreviation "cd" for "central directory"4// Note that this file uses the abbreviation "cd" for "central directory"
5///5
6const builtin = @import("builtin");6const builtin = @import("builtin");
7const std = @import("std");7const std = @import("std");
8const testing = std.testing;8const testing = std.testing;