unison/unison-src/transcripts/find-patch.output.md
2023-11-08 11:54:50 -05:00

998 B

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.old

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

.> find.patch

  1. patch

.> view.patch 1

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