unison/unison-src/transcripts/delete-silent.output.md
Greg Pfeil 0031542faf
Add a space before code block info strings
This is for consistency with the `cmark` style. Now the blocks we still
pretty-print ourselves will match the bulk of them that `cmark`
produces.
2024-07-10 13:56:07 -06:00

36 lines
417 B
Markdown

``` ucm
scratch/main> delete foo
⚠️
The following names were not found in the codebase. Check your spelling.
foo
```
``` unison
foo = 1
structural type Foo = Foo ()
```
``` ucm
scratch/main> add
⍟ I've added these definitions:
structural type Foo
foo : ##Nat
scratch/main> delete foo
Done.
scratch/main> delete.type Foo
Done.
scratch/main> delete.term Foo.Foo
Done.
```