brownplt / pyret-docs

The documentation for Pyret.
9 stars 18 forks source link

docs typo #82

Closed shriram closed 4 months ago

shriram commented 10 months ago

https://pyret.org/docs/latest/Expressions.html#%28part._s~3aconstruct-expr%29

type Constructor<A> = {
  make0 :: ( -> A),
  make1 :: (Any -> A),
  make2 :: (Any, Any -> A),
  make3 :: (Any, Any, Any -> A),
  make4 :: (Any, Any, Any, Any -> A),
  make5 :: (Any, Any, Any, Any, Any -> A)
  make  :: (RawArray<Any> -> A),
}

Comma missing on the make5 line.

[Credit: Aren Guralp.]