Skip to content

Commit 5b08451

Browse files
Merge pull request #5784 from unisonweb/pchiusano-patch-2
Change slurp output to just say "New definitions:"
2 parents 65fc68b + f8b0732 commit 5b08451

File tree

239 files changed

+481
-481
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

239 files changed

+481
-481
lines changed

unison-cli/src/Unison/Codebase/Editor/SlurpResult.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ pretty isPast ppe sr =
207207
okToAdd =
208208
ok
209209
(P.green "I've added these definitions:")
210-
(P.green "These new definitions are ok to `update`:")
210+
(P.green "New definitions:")
211211
notOks _past _present sr | isOk sr = mempty
212212
notOks past present sr =
213213
let header =

unison-src/transcripts-manual/docs.to-html.output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ some.outside = 3
2121
I found and typechecked these definitions in scratch.u. If you
2222
do an `update`, here's how your codebase would change:
2323
24-
These new definitions are ok to `update`:
24+
New definitions:
2525
2626
some.ns.direct : Nat
2727
some.ns.direct.doc : Doc2

unison-src/transcripts-round-trip/main.output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ x = ()
2424
I found and typechecked these definitions in scratch.u. If you
2525
do an `update`, here's how your codebase would change:
2626
27-
These new definitions are ok to `update`:
27+
New definitions:
2828
2929
x : ()
3030
```

unison-src/transcripts-using-base/_base.output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ testAutoClean _ =
5757
I found and typechecked these definitions in scratch.u. If you
5858
do an `update`, here's how your codebase would change:
5959
60-
These new definitions are ok to `update`:
60+
New definitions:
6161
6262
testAutoClean : '{IO} [Result]
6363
```

unison-src/transcripts-using-base/binary-encoding-nats.output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ testABunchOfNats _ =
5959
I found and typechecked these definitions in scratch.u. If you
6060
do an `update`, here's how your codebase would change:
6161
62-
These new definitions are ok to `update`:
62+
New definitions:
6363
6464
type EncDec
6565
BE16 : EncDec

unison-src/transcripts-using-base/codeops.output.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ swapped name link =
157157
I found and typechecked these definitions in scratch.u. If you
158158
do an `update`, here's how your codebase would change:
159159
160-
These new definitions are ok to `update`:
160+
New definitions:
161161
162162
structural type Three a b c
163163
Code.get : Link.Term ->{IO, Throw Text} Code
@@ -286,7 +286,7 @@ badLoad _ =
286286
I found and typechecked these definitions in scratch.u. If you
287287
do an `update`, here's how your codebase would change:
288288
289-
These new definitions are ok to `update`:
289+
New definitions:
290290
291291
structural ability Zap
292292
badLoad : '{IO} [Result]
@@ -388,7 +388,7 @@ codeTests =
388388
I found and typechecked these definitions in scratch.u. If you
389389
do an `update`, here's how your codebase would change:
390390
391-
These new definitions are ok to `update`:
391+
New definitions:
392392
393393
codeTests : '{IO} [Result]
394394
```
@@ -473,7 +473,7 @@ vtests _ =
473473
I found and typechecked these definitions in scratch.u. If you
474474
do an `update`, here's how your codebase would change:
475475
476-
These new definitions are ok to `update`:
476+
New definitions:
477477
478478
validateTest : Link.Term ->{IO} Result
479479
vtests : '{IO} [Result]

unison-src/transcripts-using-base/doc.output.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ unique type time.DayOfWeek = Sun | Mon | Tue | Wed | Thu | Fri | Sat
3434
I found and typechecked these definitions in scratch.u. If you
3535
do an `update`, here's how your codebase would change:
3636
37-
These new definitions are ok to `update`:
37+
New definitions:
3838
3939
type time.DayOfWeek
4040
ImportantConstant : Nat
@@ -80,7 +80,7 @@ scratch/main> load ./unison-src/transcripts-using-base/doc.md.files/syntax.u
8080
./unison-src/transcripts-using-base/doc.md.files/syntax.u. If
8181
you do an `update`, here's how your codebase would change:
8282
83-
These new definitions are ok to `update`:
83+
New definitions:
8484
8585
basicFormatting : Doc2
8686
doc.guide : Doc2

unison-src/transcripts-using-base/failure-tests.output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ test2 = do
2424
I found and typechecked these definitions in scratch.u. If you
2525
do an `update`, here's how your codebase would change:
2626
27-
These new definitions are ok to `update`:
27+
New definitions:
2828
2929
test1 : '{IO, Exception} [Result]
3030
test2 : '{IO, Exception} [Result]

unison-src/transcripts-using-base/fix-2805.output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ main _ = "Hello " ++ Optional.getOrBug "definitely passed an arg" (List.head !ge
1111
I found and typechecked these definitions in scratch.u. If you
1212
do an `update`, here's how your codebase would change:
1313
14-
These new definitions are ok to `update`:
14+
New definitions:
1515
1616
main : '{IO, Exception} Text
1717
```

unison-src/transcripts-using-base/fix2158-1.output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Async.parMap f as =
1717
I found and typechecked these definitions in scratch.u. If you
1818
do an `update`, here's how your codebase would change:
1919
20-
These new definitions are ok to `update`:
20+
New definitions:
2121
2222
structural ability Async t g
2323
Async.parMap : (a ->{g, Async t g} b)

0 commit comments

Comments
 (0)