aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Numbers/BinNums.v
diff options
context:
space:
mode:
authorGravatar gareuselesinge <gareuselesinge@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-11-21 17:03:52 +0000
committerGravatar gareuselesinge <gareuselesinge@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-11-21 17:03:52 +0000
commited06a90f16fcf7d45672bbddf42efe4cc0efd4d4 (patch)
tree51889eb68a73e054d999494a6f50013dd99d711e /theories/Numbers/BinNums.v
parent41744ad1706fc5f765430c63981bf437345ba9fe (diff)
theories/, plugins/ and test-suite/ ported to the Arguments vernacular
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14718 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Numbers/BinNums.v')
-rw-r--r--theories/Numbers/BinNums.v10
1 files changed, 5 insertions, 5 deletions
diff --git a/theories/Numbers/BinNums.v b/theories/Numbers/BinNums.v
index 69754f144..dfb2c5025 100644
--- a/theories/Numbers/BinNums.v
+++ b/theories/Numbers/BinNums.v
@@ -27,8 +27,8 @@ Inductive positive : Set :=
Delimit Scope positive_scope with positive.
Bind Scope positive_scope with positive.
-Arguments Scope xO [positive_scope].
-Arguments Scope xI [positive_scope].
+Arguments xO _%positive.
+Arguments xI _%positive.
(** [N] is a datatype representing natural numbers in a binary way,
by extending the [positive] datatype with a zero.
@@ -41,7 +41,7 @@ Inductive N : Set :=
Delimit Scope N_scope with N.
Bind Scope N_scope with N.
-Arguments Scope Npos [positive_scope].
+Arguments Npos _%positive.
(** [Z] is a datatype representing the integers in a binary way.
An integer is either zero or a strictly positive number
@@ -57,5 +57,5 @@ Inductive Z : Set :=
Delimit Scope Z_scope with Z.
Bind Scope Z_scope with Z.
-Arguments Scope Zpos [positive_scope].
-Arguments Scope Zneg [positive_scope].
+Arguments Zpos _%positive.
+Arguments Zneg _%positive.