From 1843464f014c946c1663de76249267486887626f Mon Sep 17 00:00:00 2001 From: Joe Tsai Date: Mon, 1 Apr 2024 13:13:50 -0700 Subject: all: consistently use "IEEE 754" over "IEEE-754" There is no hyphen between the organization and the number. For example, https://standards.ieee.org/ieee/754/6210/ shows the string "IEEE 754-2019" and not "IEEE-754-2019". This assists in searching for "IEEE 754" in documentation and not missing those using "IEEE-754". Change-Id: I9a50ede807984ff1e2f17390bc1039f6a5d162e5 Reviewed-on: https://go-review.googlesource.com/c/go/+/575438 Run-TryBot: Joseph Tsai Reviewed-by: Robert Griesemer Auto-Submit: Joseph Tsai TryBot-Result: Gopher Robot TryBot-Bypass: Dmitri Shuralyov Reviewed-by: Ian Lance Taylor --- doc/go1.17_spec.html | 12 ++++++------ doc/go_spec.html | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) (limited to 'doc') diff --git a/doc/go1.17_spec.html b/doc/go1.17_spec.html index c87d9aff3c..9f408bcc25 100644 --- a/doc/go1.17_spec.html +++ b/doc/go1.17_spec.html @@ -656,7 +656,7 @@ and are discussed in that section.

Numeric constants represent exact values of arbitrary precision and do not overflow. -Consequently, there are no constants denoting the IEEE-754 negative zero, infinity, +Consequently, there are no constants denoting the IEEE 754 negative zero, infinity, and not-a-number values.

@@ -882,8 +882,8 @@ int16 the set of all signed 16-bit integers (-32768 to 32767) int32 the set of all signed 32-bit integers (-2147483648 to 2147483647) int64 the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807) -float32 the set of all IEEE-754 32-bit floating-point numbers -float64 the set of all IEEE-754 64-bit floating-point numbers +float32 the set of all IEEE 754 32-bit floating-point numbers +float64 the set of all IEEE 754 64-bit floating-point numbers complex64 the set of all complex numbers with float32 real and imaginary parts complex128 the set of all complex numbers with float64 real and imaginary parts @@ -3814,7 +3814,7 @@ For floating-point and complex numbers, +x is the same as x, while -x is the negation of x. The result of a floating-point or complex division by zero is not specified beyond the -IEEE-754 standard; whether a run-time panic +IEEE 754 standard; whether a run-time panic occurs is implementation-specific.

@@ -3904,7 +3904,7 @@ These terms and the result of the comparisons are defined as follows:
  • Floating-point values are comparable and ordered, - as defined by the IEEE-754 standard. + as defined by the IEEE 754 standard.
  • @@ -4252,7 +4252,7 @@ When converting an integer or floating-point number to a floating-point type, or a complex number to another complex type, the result value is rounded to the precision specified by the destination type. For instance, the value of a variable x of type float32 -may be stored using additional precision beyond that of an IEEE-754 32-bit number, +may be stored using additional precision beyond that of an IEEE 754 32-bit number, but float32(x) represents the result of rounding x's value to 32-bit precision. Similarly, x + 0.1 may use more than 32 bits of precision, but float32(x + 0.1) does not. diff --git a/doc/go_spec.html b/doc/go_spec.html index 8f48f7444b..0fd12bf4b5 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -674,7 +674,7 @@ and are discussed in that section.

    Numeric constants represent exact values of arbitrary precision and do not overflow. -Consequently, there are no constants denoting the IEEE-754 negative zero, infinity, +Consequently, there are no constants denoting the IEEE 754 negative zero, infinity, and not-a-number values.

    @@ -861,8 +861,8 @@ int16 the set of all signed 16-bit integers (-32768 to 32767) int32 the set of all signed 32-bit integers (-2147483648 to 2147483647) int64 the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807) -float32 the set of all IEEE-754 32-bit floating-point numbers -float64 the set of all IEEE-754 64-bit floating-point numbers +float32 the set of all IEEE 754 32-bit floating-point numbers +float64 the set of all IEEE 754 64-bit floating-point numbers complex64 the set of all complex numbers with float32 real and imaginary parts complex128 the set of all complex numbers with float64 real and imaginary parts @@ -5022,7 +5022,7 @@ For floating-point and complex numbers, +x is the same as x, while -x is the negation of x. The result of a floating-point or complex division by zero is not specified beyond the -IEEE-754 standard; whether a run-time panic +IEEE 754 standard; whether a run-time panic occurs is implementation-specific.

    @@ -5112,7 +5112,7 @@ These terms and the result of the comparisons are defined as follows:
  • Floating-point types are comparable and ordered. - Two floating-point values are compared as defined by the IEEE-754 standard. + Two floating-point values are compared as defined by the IEEE 754 standard.
  • @@ -5542,7 +5542,7 @@ When converting an integer or floating-point number to a floating-point type, or a complex number to another complex type, the result value is rounded to the precision specified by the destination type. For instance, the value of a variable x of type float32 -may be stored using additional precision beyond that of an IEEE-754 32-bit number, +may be stored using additional precision beyond that of an IEEE 754 32-bit number, but float32(x) represents the result of rounding x's value to 32-bit precision. Similarly, x + 0.1 may use more than 32 bits of precision, but float32(x + 0.1) does not. -- cgit v1.2.3-54-g00ecf