authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-01-28 04:59:14+01:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2025-01-28 04:59:14+01:00
log41e7604359a83d45fb4a755648f58919512b4513
treeed7500bfeba27a4f0fb976549283d68ca75a0941
parent37037b269e4484702d12a3c8c909d4b8ed5895f1
parent7599216341251a6c24428259977d52908f9f2a3d
signaturebadge-check Signed by PGP key B5690EEEBB952194

Merge pull request #22573 from sorairolake/fix-invisible-doccomments

Fix invisible doccomments at the start of source files to make them visible

2 files changed, 9 insertions(+), 9 deletions(-)

lib/std/compress/flate/Lookup.zig+4-4
...@@ -1,7 +1,7 @@...@@ -1,7 +1,7 @@
1/// Lookup of the previous locations for the same 4 byte data. Works on hash of1//! Lookup of the previous locations for the same 4 byte data. Works on hash of
2/// 4 bytes data. Head contains position of the first match for each hash. Chain2//! 4 bytes data. Head contains position of the first match for each hash. Chain
3/// points to the previous position of the same hash given the current location.3//! points to the previous position of the same hash given the current location.
4///4
5const std = @import("std");5const std = @import("std");
6const testing = std.testing;6const testing = std.testing;
7const expect = testing.expect;7const expect = testing.expect;
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;