From c4cd592f0e1eeff5a4056796610d97010ae4e38c Mon Sep 17 00:00:00 2001 From: Nathan Michaels Date: Thu, 30 Sep 2021 00:19:23 -0400 Subject: [PATCH] Fix a typo in @ceil documentation. --- doc/langref.html.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/langref.html.in b/doc/langref.html.in index 2e69e37097..ec9d96d069 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -8866,7 +8866,7 @@ fn doTheTest() !void { {#header_open|@ceil#}
{#syntax#}@ceil(value: anytype) @TypeOf(value){#endsyntax#}

- 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.