zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit c4cd592f0e1eeff5a4056796610d97010ae4e38c (tree)
parent 5e7406bdd9f942900dceb2f917ed5f64b6f2ba00
Author: Nathan Michaels <nathan@nmichaels.org>
Date:   Thu, 30 Sep 2021 00:19:23 -0400

Fix a typo in @ceil documentation.

Diffstat:
Mdoc/langref.html.in | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/langref.html.in b/doc/langref.html.in @@ -8866,7 +8866,7 @@ fn doTheTest() !void { {#header_open|@ceil#} <pre>{#syntax#}@ceil(value: anytype) @TypeOf(value){#endsyntax#}</pre> <p> - Returns the largest integral value not less than the given floating point number. + Returns the smallest integral value not less than the given floating point number. Uses a dedicated hardware instruction when available. </p> <p>