diff options
Diffstat (limited to 'lib/std/compress/flate/Token.zig')
| -rw-r--r-- | lib/std/compress/flate/Token.zig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/std/compress/flate/Token.zig b/lib/std/compress/flate/Token.zig index fd9dd1d1e3..7e067daf83 100644 --- a/lib/std/compress/flate/Token.zig +++ b/lib/std/compress/flate/Token.zig @@ -1,7 +1,7 @@ -/// Token cat be literal: single byte of data or match; reference to the slice of -/// data in the same stream represented with <length, distance>. Where length -/// can be 3 - 258 bytes, and distance 1 - 32768 bytes. -/// +//! Token cat be literal: single byte of data or match; reference to the slice of +//! data in the same stream represented with <length, distance>. Where length +//! can be 3 - 258 bytes, and distance 1 - 32768 bytes. +//! const std = @import("std"); const assert = std.debug.assert; const print = std.debug.print; |
