summaryrefslogtreecommitdiff
path: root/language
diff options
context:
space:
mode:
authorAlasdair Armstrong2020-01-16 19:14:22 +0000
committerAlasdair Armstrong2020-01-16 19:14:22 +0000
commitbc6b51d70a783df161f8fb43264ea1558ff37bac (patch)
tree06cfe24052ab08f0268c116ce488be115c4e6af4 /language
parentbc55a2c25d0f2f630acf457420d5b868d2855ebc (diff)
Allow effects on mappings
Diffstat (limited to 'language')
-rw-r--r--language/sail.ott2
1 files changed, 1 insertions, 1 deletions
diff --git a/language/sail.ott b/language/sail.ott
index c0c8da49..9c47a4f1 100644
--- a/language/sail.ott
+++ b/language/sail.ott
@@ -229,7 +229,7 @@ typ :: 'Typ_' ::=
| id :: :: id {{ com defined type }}
| kid :: :: var {{ com type variable }}
| ( typ1 , ... , typn ) -> typ2 effectkw effect :: :: fn {{ com Function (first-order only) }}
- | typ1 <-> typ2 :: :: bidir {{ com Mapping }}
+ | typ1 <-> typ2 effectkw effect :: :: bidir {{ com Mapping }}
| ( typ1 , .... , typn ) :: :: tup {{ com Tuple }}
| id ( typ_arg1 , ... , typ_argn ) :: :: app {{ com type constructor application }}
| ( typ ) :: S :: paren {{ ichlo [[typ]] }}