aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAnton Trunov2020-08-13 09:15:17 +0300
committerAnton Trunov2020-08-13 09:15:17 +0300
commit8ef70779368dc6c69e27df8655de9c985bc89394 (patch)
tree7c9e675022e81638140a5f9604d05ebda716a617 /doc
parenta9786e88c8afe03cbe85cffbcce2767bd655048d (diff)
parentd39730a03b03bdbb23f0ad042a2bb87055d91d00 (diff)
Merge PR #12479: Bring Int63 notations into line with stdlib
Reviewed-by: herbelin Reviewed-by: maximedenes
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog/10-standard-library/12479-fix-int-ltb-notations.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/changelog/10-standard-library/12479-fix-int-ltb-notations.rst b/doc/changelog/10-standard-library/12479-fix-int-ltb-notations.rst
new file mode 100644
index 0000000000..208855b4c8
--- /dev/null
+++ b/doc/changelog/10-standard-library/12479-fix-int-ltb-notations.rst
@@ -0,0 +1,9 @@
+- **Changed:**
+ Int63 notations now match up with the rest of the standard library: :g:`a \%
+ m`, :g:`m == n`, :g:`m < n`, :g:`m <= n`, and :g:`m ≤ n` have been replaced
+ with :g:`a mod m`, :g:`m =? n`, :g:`m <? n`, :g:`m <=? n`, and :g:`m ≤? n`.
+ The old notations are still available as deprecated notations. Additionally,
+ there is now a ``Coq.Numbers.Cyclic.Int63.Int63.Int63Notations`` module that
+ users can import to get the ``Int63`` notations without unqualifying the
+ various primitives (`#12479 <https://github.com/coq/coq/pull/12479>`_, fixes
+ `#12454 <https://github.com/coq/coq/issues/12454>`_, by Jason Gross).