aboutsummaryrefslogtreecommitdiff
path: root/lib/std/json.zig
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2023-04-30 18:02:08 +0100
committerAndrew Kelley <andrew@ziglang.org>2023-04-30 18:16:04 -0700
commit94e30a756edc4c2182168dabd97d481b8aec0ff2 (patch)
tree50d4273d99ddd7a442d62b615cf9dc6128e71fef /lib/std/json.zig
parentec6ffaa1e47388a59035277dafbe3d9999a80fca (diff)
downloadzig-94e30a756edc4c2182168dabd97d481b8aec0ff2.tar.gz
zig-94e30a756edc4c2182168dabd97d481b8aec0ff2.zip
std: fix a bunch of typos
The majority of these are in comments, some in doc comments which might affect the generated documentation, and a few in parameter names - nothing that should be breaking, however.
Diffstat (limited to 'lib/std/json.zig')
-rw-r--r--lib/std/json.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/json.zig b/lib/std/json.zig
index 432f4e6911..af928bc564 100644
--- a/lib/std/json.zig
+++ b/lib/std/json.zig
@@ -1603,7 +1603,7 @@ fn parseInternal(
if (fields_seen[i]) {
switch (options.duplicate_field_behavior) {
.UseFirst => {
- // unconditonally ignore value. for comptime fields, this skips check against default_value
+ // unconditionally ignore value. for comptime fields, this skips check against default_value
parseFree(field.type, try parse(field.type, tokens, child_options), child_options);
found = true;
break;