diff options
| author | Loris Cro <kappaloris@gmail.com> | 2023-04-25 20:03:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-25 20:03:53 +0200 |
| commit | 015ea6fd6c0c0deacb42de237f737d208737e3ac (patch) | |
| tree | 33f5e2d3acacc24e63f259ce5485fee28243ed44 /lib/std/Build | |
| parent | a260fa8bf22b952e96b08c3f206756e1784ce870 (diff) | |
| parent | 8d88dcdc61c61e3410138f4402482131f5074a80 (diff) | |
| download | zig-015ea6fd6c0c0deacb42de237f737d208737e3ac.tar.gz zig-015ea6fd6c0c0deacb42de237f737d208737e3ac.zip | |
Merge branch 'master' into autodoc-pkg-mod
Diffstat (limited to 'lib/std/Build')
| -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); |
