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/// 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. Chain
3/// points to the previous position of the same hash given the current location.
4///
1//! 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. Chain
3//! points to the previous position of the same hash given the current location.
4
55const std = @import("std");
66const testing = std.testing;
77const expect = testing.expect;
lib/std/zip.zig+5-5
......@@ -1,8 +1,8 @@
1/// The .ZIP File Format Specification is found here:
2/// https://pkwaredownloads.blob.core.windows.net/pem/APPNOTE.txt
3///
4/// Note that this file uses the abbreviation "cd" for "central directory"
5///
1//! The .ZIP File Format Specification is found here:
2//! https://pkwaredownloads.blob.core.windows.net/pem/APPNOTE.txt
3//!
4//! Note that this file uses the abbreviation "cd" for "central directory"
5
66const builtin = @import("builtin");
77const std = @import("std");
88const testing = std.testing;