summaryrefslogtreecommitdiffstats
path: root/content/2015-01-19-this-week-in-rust.md
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2015-01-20 10:33:16 +1100
committerHuon Wilson <dbau.pp+github@gmail.com>2015-01-20 10:33:16 +1100
commit8abc7f445978f6c8b3d22576864722a3e98f0946 (patch)
tree1bc02eca74195437615938b95c8ffe59e1815a87 /content/2015-01-19-this-week-in-rust.md
parent79dc6b0ff8b84725d9be622df2d34a8a049c92ed (diff)
Fix UFCS RFC link
Diffstat (limited to 'content/2015-01-19-this-week-in-rust.md')
-rw-r--r--content/2015-01-19-this-week-in-rust.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/2015-01-19-this-week-in-rust.md b/content/2015-01-19-this-week-in-rust.md
index 183bb3d..c5b2083 100644
--- a/content/2015-01-19-this-week-in-rust.md
+++ b/content/2015-01-19-this-week-in-rust.md
@@ -43,7 +43,7 @@ Now you can follow breaking changes *[as they happen][BitRust]*!
* UFCS method calls can now be [qualified by the trait][ufcs] of the
method. This can be used to disambiguate method calls when multiple
applicable methods are in scope, e.g. `<i32 as Add<_>>::add(1, 2)`
- which is equivalent to `1.add(2)`. [RFC][rfcs-rfc].
+ which is equivalent to `1.add(2)`. [RFC][ufcs-rfc].
* Negative impls are [partially implemented][negimpl], though appear
to still be special-cased to the `Send` and `Sync`
traits. [RFC][negimpl-rfc].