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

Fix invisible doccomments at the start of source files to make them visible
This commit is contained in:
Alex Rønne Petersen 2025-01-28 04:59:14 +01:00 committed by GitHub
commit 41e7604359
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 9 deletions

View file

@ -1,7 +1,7 @@
/// Lookup of the previous locations for the same 4 byte data. Works on hash of //! Lookup of the previous locations for the same 4 byte data. Works on hash of
/// 4 bytes data. Head contains position of the first match for each hash. Chain //! 4 bytes data. Head contains position of the first match for each hash. Chain
/// points to the previous position of the same hash given the current location. //! points to the previous position of the same hash given the current location.
///
const std = @import("std"); const std = @import("std");
const testing = std.testing; const testing = std.testing;
const expect = testing.expect; const expect = testing.expect;

View file

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