diff options
| author | Georges Gonthier | 2018-12-04 13:27:53 +0100 |
|---|---|---|
| committer | GitHub | 2018-12-04 13:27:53 +0100 |
| commit | e99b8b9695cdb53492e63077cb0dd551c4a06dc3 (patch) | |
| tree | 9af429f5d53b30de0c44e11ed651403289f39108 /mathcomp/algebra/ssrint.v | |
| parent | 03ad994dfee48e1a7b2b7091c45dfdcf4402f826 (diff) | |
| parent | 8c82657e7692049dde4a4c44a2ea53d0c4fa7cb5 (diff) | |
Merge pull request #253 from anton-trunov/arguments
Document parameter names whenever possible
Diffstat (limited to 'mathcomp/algebra/ssrint.v')
| -rw-r--r-- | mathcomp/algebra/ssrint.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mathcomp/algebra/ssrint.v b/mathcomp/algebra/ssrint.v index d0214dd..614fbc2 100644 --- a/mathcomp/algebra/ssrint.v +++ b/mathcomp/algebra/ssrint.v @@ -369,7 +369,7 @@ Canonical int_countIdomainType := [countIdomainType of int]. Definition absz m := match m with Posz p => p | Negz n => n.+1 end. Notation "m - n" := (@GRing.add int_ZmodType m%N (@GRing.opp int_ZmodType n%N)) : distn_scope. -Arguments absz _%distn_scope. +Arguments absz m%distn_scope. Local Notation "`| m |" := (absz m) : nat_scope. Module intOrdered. @@ -1607,7 +1607,7 @@ Module Export IntDist. Notation "m - n" := (@GRing.add int_ZmodType m%N (@GRing.opp int_ZmodType n%N)) : distn_scope. -Arguments absz _%distn_scope. +Arguments absz m%distn_scope. Notation "`| m |" := (absz m) : nat_scope. Coercion Posz : nat >-> int. |
