File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -312,14 +312,15 @@ Given a value `m`, one can access its type representative via the
312312A value that implements the Group specification must also implement
313313the [Monoid ](# monoid) specification.
314314
315- 1 . `g. concat (g. invert() )` is equivalent to `g. empty() ` (right inverse)
316- 2 . `g. invert() . concat (g)` is equivalent to `g. empty() ` (left inverse)
315+ 1 . `g. concat (g. invert() )` is equivalent to `g. constructor . empty() ` (right inverse)
316+ 2 . `g. invert() . concat (g)` is equivalent to `g. constructor . empty() ` (left inverse)
317317
318318#### `invert` method
319319
320320```hs
321321invert :: Group g => g ~> () -> g
322322```
323+
323324A value which has a Group must provide an `invert` method. The
324325`invert` method takes no arguments:
325326
You can’t perform that action at this time.
0 commit comments