Skip to content

Commit a987756

Browse files
committed
unnecessary builtins.mergeio
1 parent ec8ae53 commit a987756

23 files changed

+41
-43
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ interpreter-tests.md
1111

1212
# Stack
1313
.stack-work
14+
.stack-work-hls
1415

1516
# Cabal
1617
dist-newstyle

unison-src/transcripts-manual/scheme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ This transcript executes very slowly, because the compiler has an
22
entire copy of base (and other stuff) within it.
33

44
```ucm:hide
5-
.> builtins.mergeio
5+
.> builtins.merge
66
.> pull.without-history unison.public.base.trunk base
77
```
88

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ transcripts which contain less boilerplate.
1010
## Usage
1111

1212
```ucm:hide
13-
.> builtins.merge
1413
.> builtins.mergeio
1514
.> load unison-src/transcripts-using-base/base.u
1615
.> add

unison-src/transcripts-using-base/utf8.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ Test for new Text -> Bytes conversions explicitly using UTF-8 as the encoding
22

33
```ucm:hide
44
.> builtins.merge
5-
.> builtins.mergeio
65
```
76

87
Unison has function for converting between `Text` and a UTF-8 `Bytes` encoding of the Text.

unison-src/transcripts/fix1800.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
```ucm:hide
3-
.> builtins.mergeio
3+
.> builtins.merge
44
```
55

66
```unison:hide

unison-src/transcripts/fix2187.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
```ucm:hide
2-
.> builtins.mergeio
2+
.> builtins.merge
33
```
44

5-
```unison
5+
```unison
66
77
lexicalScopeEx: [Text]
8-
lexicalScopeEx =
8+
lexicalScopeEx =
99
parent = "outer"
10-
inner1 = let
10+
inner1 = let
1111
child1 = "child1"
1212
inner2 : [Text]
13-
inner2 = let
13+
inner2 = let
1414
child2 = "child2"
1515
[parent, child1, child2]
1616
inner2
1717
inner1
1818
19-
```
19+
```

unison-src/transcripts/fix2334.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Tests an issue where pattern matching matrices involving built-in
33
types was discarding default cases in some branches.
44

55
```ucm:hide
6-
.> builtins.mergeio
6+
.> builtins.merge
77
```
88

99
```unison

unison-src/transcripts/fix2474.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ should be typed in the following way:
1818
the ability that contains `e`.
1919

2020
```ucm
21-
.> builtins.mergeio
21+
.> builtins.merge
2222
```
2323

2424
```unison
25-
structural ability Stream a where
25+
structural ability Stream a where
2626
emit : a -> ()
2727
2828
Stream.uncons : '{Stream a, g} r ->{g} Either r (a, '{Stream a, g} r)
29-
Stream.uncons s =
29+
Stream.uncons s =
3030
go : Request {Stream a,g} r -> Either r (a, '{Stream a,g} r)
31-
go = cases
31+
go = cases
3232
{ r } -> Left r
3333
{ Stream.emit a -> tl } -> Right (a, tl : '{Stream a,g} r)
3434
handle !s with go

unison-src/transcripts/fix2474.output.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ should be typed in the following way:
1818
the ability that contains `e`.
1919

2020
```ucm
21-
.> builtins.mergeio
21+
.> builtins.merge
2222
2323
Done.
2424
2525
```
2626
```unison
27-
structural ability Stream a where
27+
structural ability Stream a where
2828
emit : a -> ()
2929
3030
Stream.uncons : '{Stream a, g} r ->{g} Either r (a, '{Stream a, g} r)
31-
Stream.uncons s =
31+
Stream.uncons s =
3232
go : Request {Stream a,g} r -> Either r (a, '{Stream a,g} r)
33-
go = cases
33+
go = cases
3434
{ r } -> Left r
3535
{ Stream.emit a -> tl } -> Right (a, tl : '{Stream a,g} r)
3636
handle !s with go

unison-src/transcripts/fix3678.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
```ucm:hide
3-
.> builtins.mergeio
3+
.> builtins.merge
44
```
55

66
Array comparison was indexing out of bounds.

0 commit comments

Comments
 (0)