| author | |
| committer | |
| log | 41e7604359a83d45fb4a755648f58919512b4513 |
| tree | ed7500bfeba27a4f0fb976549283d68ca75a0941 |
| parent | 37037b269e4484702d12a3c8c909d4b8ed5895f1 |
| parent | 7599216341251a6c24428259977d52908f9f2a3d |
| signature |
Fix invisible doccomments at the start of source files to make them visible2 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 | ||
| 5 | 5 | const std = @import("std"); |
| 6 | 6 | const testing = std.testing; |
| 7 | 7 | const 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 | ||
| 6 | 6 | const builtin = @import("builtin"); |
| 7 | 7 | const std = @import("std"); |
| 8 | 8 | const testing = std.testing; |