unison/unison-src/transcripts/fix-ls.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

744 B

test-ls/main> builtins.merge

  Done.

foo.bar.add x y = x Int.+ y

foo.bar.subtract x y = x Int.- y

  Loading changes detected in scratch.u.

  I found and typechecked these definitions in scratch.u. If you
  do an `add` or `update`, here's how your codebase would
  change:
  
    ⍟ These new definitions are ok to `add`:
    
      foo.bar.add      : Int -> Int -> Int
      foo.bar.subtract : Int -> Int -> Int

test-ls/main> add

  ⍟ I've added these definitions:
  
    foo.bar.add      : Int -> Int -> Int
    foo.bar.subtract : Int -> Int -> Int

test-ls/main> ls foo

  1. bar/ (2 terms)

test-ls/main> ls 1

  1. add      (Int -> Int -> Int)
  2. subtract (Int -> Int -> Int)