From 5a2e619b1112455544ccbe7ea5b02d43d1fff156 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 25 Apr 2016 13:57:00 +0200 Subject: [PATCH] Minor typo fix --- text/blk-counting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/blk-counting.md b/text/blk-counting.md index 6743be3..e25fa5f 100644 --- a/text/blk-counting.md +++ b/text/blk-counting.md @@ -41,7 +41,7 @@ macro_rules! count_tts { # } ``` -> **Note**: As of `rustc` 1.2, the compiler has *grevious* performance problems when large numbers of integer literals of unknown type must undergo inference. We are using explicitly `usize`-typed literals here to avoid that. +> **Note**: As of `rustc` 1.2, the compiler has *grievous* performance problems when large numbers of integer literals of unknown type must undergo inference. We are using explicitly `usize`-typed literals here to avoid that. > > If this is not suitable (such as when the type must be substitutable), you can help matters by using `as` (*e.g.* `0 as $ty`, `1 as $ty`, *etc.*).