unison/unison-src/transcripts/find-patch.output.md
2020-04-08 14:25:19 -04:00

1.2 KiB

find.patch Test

---
title: test.u
---
hey = "yello"


  I found and typechecked these definitions in test.u. If you do
  an `add` or `update`, here's how your codebase would change:
  
    ⍟ These new definitions are ok to `add`:
    
      hey : Text

.> add

  ⍟ I've added these definitions:
  
    hey : Text

Update

---
title: test.u
---
hey = "hello"


  I found and typechecked these definitions in test.u. If you do
  an `add` or `update`, here's how your codebase would change:
  
    ⍟ These names already exist. You can `update` them to your
      new definition:
    
      hey : Text

Update

.> update

  ⍟ I've updated these names to your new definition:
  
    hey : builtin.Text

.> find.patch

  1. patch

.> view.patch patch

  Edited Terms: hey#8e79ctircj -> hey
  
  Tip: To remove entries from a patch, use
       delete.term-replacement or delete.type-replacement, as
       appropriate.

.> view.patch 1

  Edited Terms: hey#8e79ctircj -> hey
  
  Tip: To remove entries from a patch, use
       delete.term-replacement or delete.type-replacement, as
       appropriate.