From Jason Turner

[denorm.style]

Diff to HTML by rtfpessoa

tmp/tmpgbwjqx2n/{from.md → to.md} RENAMED
@@ -8,13 +8,13 @@ namespace std {
8
  denorm_present = 1
9
  };
10
  }
11
  ```
12
 
13
- The presence or absence of denormalization (variable number of exponent
14
- bits) is characterized by the values:
15
 
16
  - `denorm_indeterminate` if it cannot be determined whether or not the
17
- type allows denormalized values
18
- - `denorm_absent` if the type does not allow denormalized values
19
- - `denorm_present` if the type does allow denormalized values
20
 
 
8
  denorm_present = 1
9
  };
10
  }
11
  ```
12
 
13
+ The presence or absence of subnormal numbers (variable number of
14
+ exponent bits) is characterized by the values:
15
 
16
  - `denorm_indeterminate` if it cannot be determined whether or not the
17
+ type allows subnormal values
18
+ - `denorm_absent` if the type does not allow subnormal values
19
+ - `denorm_present` if the type does allow subnormal values
20