aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorr00ster91 <r00ster91@proton.me>2022-07-23 17:02:55 +0200
committerVeikka Tuominen <git@vexu.eu>2022-07-27 18:07:53 +0300
commit4ef7d8581085394d55f5effbb38c05a15546af1b (patch)
tree6491407fba9ac7738e31852387e9089623afdb1d /doc
parent7ba1f9bfb52a1f6fa776eeafb45790331be4388f (diff)
downloadzig-4ef7d8581085394d55f5effbb38c05a15546af1b.tar.gz
zig-4ef7d8581085394d55f5effbb38c05a15546af1b.zip
std.fmt: lowercase compile errors
`compileError\("([A-Z])` and `compileError\("\L\1`. It's pretty convenient.
Diffstat (limited to 'doc')
-rw-r--r--doc/langref.html.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/langref.html.in b/doc/langref.html.in
index 81ccd58261..c61f2d0790 100644
--- a/doc/langref.html.in
+++ b/doc/langref.html.in
@@ -7228,7 +7228,7 @@ pub fn print(self: *Writer, arg0: []const u8, arg1: i32) !void {
<p>
And now, what happens if we give too many arguments to {#syntax#}print{#endsyntax#}?
</p>
- {#code_begin|test_err|Unused argument in 'here is a string: '{s}' here is a number: {}#}
+ {#code_begin|test_err|unused argument in 'here is a string: '{s}' here is a number: {}#}
const print = @import("std").debug.print;
const a_number: i32 = 1234;