zig/lib/std/math
JustinWayland c45af2af61
Fix simple doc mistakes. (#17624)
* Add missing period in Stack's description

This looks fine in the source, but looks bad when seen on the documentation website.

* Correct documentation for attachSegfaultHandler()

The description for attachSegfaultHandler() looks pretty bad without indicating that the stuff at the end is code

* Added missing 'the's in Queue.put's documentation

* Fixed several errors in Stack's documentation

`push()` and `pop()` were not styled as code

There was no period after `pop()`, which looks bad on the documentation.

* Fix multiple problems in base64.zig

Both "invalid"s in Base64.decoder were not capitalized.

Missing period in documentation of Base64DecoderWithIgnore.calcSizeUpperBound.

* Fix capitalization typos in bit_set.zig

In DynamicBitSetUnmanaged.deinit's and DynamicBitSet.deinit's documentation, "deinitializes" was uncapitalized.

* Fix typos in fifo.zig's documentation

Added a previously missing period to the end of the first line of LinearFifo.writableSlice's documentation.
Added missing periods to both lines of LinearFifo.pump's documentation.

* Fix typos in fmt.bufPrint's documentation

The starts of both lines were not capitalized.

* Fix minor documentation problems in fs/file.zig

Missing periods in documentation for Permissions.setReadOnly, PermissionsWindows.setReadOnly, MetadataUnix.created, MetadataLinux.created, and MetadataWindows.created.

* Fix a glaring typo in enums.zig

* Correct errors in fs.zig

* Fixed documentation problems in hash_map.zig

The added empty line in verify_context's documentation is needed, otherwise autodoc for some reason assumes that the list hasn't been terminated and continues reading off the rest of the documentation as if it were part of the second list item.

* Added lines between consecutive URLs in http.zig

Makes the documentation conform closer to what was intended.

* Fix wrongfully ended sentence in Uri.zig

* Handle wrongly entered comma in valgrind.zig.

* Add missing periods in wasm.zig's documentation

* Fix odd spacing in event/loop.zig

* Add missing period in http/Headers.zig

* Added missing period in io/limited_reader.zig

This isn't in the documentation due to what I guess is a limitation of autodoc, but it's clearly supposed to be. If it was, it would look pretty bad.

* Correct documentation in math/big/int.zig

* Correct formatting in math/big/rational.zig

* Create an actual link to ZIGNOR's paper.

* Fixed grammatical issues in sort/block.zig

This will not show up in the documentation currently.

* Fix typo in hash_map.zig
2023-10-21 21:24:55 +00:00
..
big Fix simple doc mistakes. (#17624) 2023-10-21 21:24:55 +00:00
complex Remove @fabs, fabs and absCast/Int from std lib 2023-09-27 11:24:28 -07:00
acos.zig Make NaNs quiet by default and other NaN tidy-up (#16826) 2023-08-18 02:07:49 -04:00
acosh.zig Make NaNs quiet by default and other NaN tidy-up (#16826) 2023-08-18 02:07:49 -04:00
asin.zig Remove @fabs, fabs and absCast/Int from std lib 2023-09-27 11:24:28 -07:00
asinh.zig std.math.asinh: changed unsigned int to hexadecimal 2023-09-12 22:22:07 +12:00
atan.zig Remove @fabs, fabs and absCast/Int from std lib 2023-09-27 11:24:28 -07:00
atan2.zig Remove @fabs, fabs and absCast/Int from std lib 2023-09-27 11:24:28 -07:00
atanh.zig Make NaNs quiet by default and other NaN tidy-up (#16826) 2023-08-18 02:07:49 -04:00
big.zig remove stage1 workaround for big int set 2023-02-04 00:29:04 -05:00
cbrt.zig std.math.cbrt: fixed -0.0 evaluating to 0.0 2023-09-12 18:39:34 +00:00
complex.zig std: remove names from incorrectly named tests 2023-04-21 23:08:48 -04:00
copysign.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
cosh.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
expm1.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
expo2.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
float.zig Make NaNs quiet by default and other NaN tidy-up (#16826) 2023-08-18 02:07:49 -04:00
frexp.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
gcd.zig std.math: add "Greatest common divisor" (gcd) 2022-09-29 21:42:56 +03:00
hypot.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
ilogb.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
isfinite.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
isinf.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
isnan.zig Make NaNs quiet by default and other NaN tidy-up (#16826) 2023-08-18 02:07:49 -04:00
isnormal.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
ldexp.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
log.zig std.math.log_int: implement integer logarithm without using float math 2023-09-14 19:33:56 +00:00
log1p.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
log2.zig libstd: skip problematic tests on aarch64-windows 2022-11-30 00:26:40 +01:00
log10.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
log_int.zig std.math.log_int: implement integer logarithm without using float math 2023-09-14 19:33:56 +00:00
modf.zig Use builtin inference over @as where possible 2023-07-24 10:23:51 -07:00
nextafter.zig std.math: add nextAfter (#16894) 2023-10-06 14:44:47 -04:00
pow.zig Remove @fabs, fabs and absCast/Int from std lib 2023-09-27 11:24:28 -07:00
powi.zig update uses of overflow arithmetic builtins 2022-12-27 15:13:14 +02:00
scalbn.zig Use the word 'base' consistently instead of 'radix' 2023-06-01 00:02:16 +03:00
signbit.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
sinh.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
sqrt.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00
tanh.zig all: migrate code to new cast builtin syntax 2023-06-24 16:56:39 -07:00