From Jason Turner

[numeric.ops.lcm]

Diff to HTML by rtfpessoa

tmp/tmpu3irdbkh/{from.md → to.md} RENAMED
@@ -3,11 +3,11 @@
3
  ``` cpp
4
  template<class M, class N>
5
  constexpr common_type_t<M, N> lcm(M m, N n);
6
  ```
7
 
8
- *Mandates:* `M` and `N` both are integer types and not cv `bool`.
9
 
10
  *Preconditions:* |`m`| and |`n`| are representable as a value of
11
  `common_type_t<M, N>`. The least common multiple of |`m`| and |`n`| is
12
  representable as a value of type `common_type_t<M, N>`.
13
 
 
3
  ``` cpp
4
  template<class M, class N>
5
  constexpr common_type_t<M, N> lcm(M m, N n);
6
  ```
7
 
8
+ *Mandates:* `M` and `N` both are integer types other than cv `bool`.
9
 
10
  *Preconditions:* |`m`| and |`n`| are representable as a value of
11
  `common_type_t<M, N>`. The least common multiple of |`m`| and |`n`| is
12
  representable as a value of type `common_type_t<M, N>`.
13