Skip to content

Commit 3d4332c

Browse files
dlrobertsonmark-i-m
authored andcommitted
Update links
Add missing link and add link for UFCS.
1 parent 27e49fe commit 3d4332c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/method-lookup.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ the form:
1212
receiver.method(...)
1313
```
1414

15-
into a more explicit UFCS form:
15+
into a more explicit [UFCS] form:
1616

1717
```rust
1818
Trait::method(ADJ(receiver), ...) // for a trait call
@@ -37,6 +37,7 @@ probe phase produces a "pick" (`probe::Pick`), which is designed to be
3737
cacheable across method-call sites. Therefore, it does not include
3838
inference variables or other information.
3939

40+
[UFCS]: https://github.com/rust-lang/rfcs/blob/master/text/0132-ufcs.md
4041
[probe]: https://github.com/rust-lang/rust/blob/master/src/librustc_typeck/check/method/probe.rs
4142
[confirm]: https://github.com/rust-lang/rust/blob/master/src/librustc_typeck/check/method/confirm.rs
4243

src/traits-bibliography.md

+1
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ SLG formulation that is the basis for our on-demand solver.
2626

2727
[nftrd]: https://dl.acm.org/citation.cfm?id=651202
2828
[ts]: http://www3.cs.stonybrook.edu/~tswift/
29+
[Theresa Swift]: http://www3.cs.stonybrook.edu/~tswift/

0 commit comments

Comments
 (0)