authorgravatar for sorairolake@protonmail.chShun Sakai <sorairolake@protonmail.ch> 2025-01-22 23:34:57+09:00
committergravatar for sorairolake@protonmail.chShun Sakai <sorairolake@protonmail.ch> 2025-01-22 23:34:57+09:00
loga3ad0a2f771e2c6b4b71d694ff4ea8fc1aa26479
tree021de584e5c906870b598a4c5e4c8cc1fe35430f
parent941677e08318c2baaabc9d0fc87892d1b63487ae

std.compress.flate.Lookup: 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.

1 files changed, 4 insertions(+), 4 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;