diff options
Diffstat (limited to 'lib/std/Build/Cache.zig')
| -rw-r--r-- | lib/std/Build/Cache.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/Build/Cache.zig b/lib/std/Build/Cache.zig index 3b67f4b24c..cae779a306 100644 --- a/lib/std/Build/Cache.zig +++ b/lib/std/Build/Cache.zig @@ -184,7 +184,7 @@ pub const File = struct { pub const HashHelper = struct { hasher: Hasher = hasher_init, - /// Record a slice of bytes as an dependency of the process being cached + /// Record a slice of bytes as a dependency of the process being cached. pub fn addBytes(hh: *HashHelper, bytes: []const u8) void { hh.hasher.update(mem.asBytes(&bytes.len)); hh.hasher.update(bytes); |
