summaryrefslogtreecommitdiffstats
path: root/content/2014-12-22-this-week-in-rust.md
diff options
context:
space:
mode:
authortaralx <taralx@gmail.com>2014-12-29 20:44:08 -0800
committertaralx <taralx@gmail.com>2014-12-29 20:44:08 -0800
commit061162e535b94e6a5016996e1c5c4255d662f76d (patch)
tree09d36483bdcdcd16c2c349c333e07cc425814204 /content/2014-12-22-this-week-in-rust.md
parent810b84c4b6cb378a78f24ff2391121532f85f4e9 (diff)
Fix missing backtick in last week's TWIR
Diffstat (limited to 'content/2014-12-22-this-week-in-rust.md')
-rw-r--r--content/2014-12-22-this-week-in-rust.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/2014-12-22-this-week-in-rust.md b/content/2014-12-22-this-week-in-rust.md
index ee21f07..3b1c043 100644
--- a/content/2014-12-22-this-week-in-rust.md
+++ b/content/2014-12-22-this-week-in-rust.md
@@ -25,7 +25,7 @@ Now you can follow breaking changes *[as they happen][BitRust]*!
## Breaking Changes
-* Macros using parens and square brackets (`macro!()`, macro![]`) are
+* Macros using parens and square brackets (`macro!()`, `macro![]`) are
[parsed as expressions][mac] if not followed by a semicolon. This
makes expressions like `vec![1i, 2, 3].len();` work as
expected. [RFC][mac-rfc].