Skip to content

Commit 3ab515b

Browse files
committed
SILProgrammer's manual. Remove a couple remnants of fake SIL syntax.
1 parent d2cc353 commit 3ab515b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/SILProgrammersManual.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ first is the callee), and in lowered SIL, it is actually the third
8484
SILFunctionArgument (after the indirect result and first parameter):
8585

8686
```
87-
%closure = partial_apply @foo(#0: %t)
87+
%closure = partial_apply @foo(#0: t)
8888
```
8989

9090
Application of the closure with opaque values has one applied
@@ -97,7 +97,7 @@ argument:
9797
Lowered application of the closure has two applied arguments:
9898

9999
```
100-
%directResult = apply %closure(#0: %indirectResult: $*T, #1: i)
100+
%directResult = apply %closure(#0: %indirectResult: *T, #1: i)
101101
```
102102

103103
The mapping between `SILFunctionType` and `SILFunctionArgument`, which depends

0 commit comments

Comments
 (0)