about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorCamelid <camelidcamel@gmail.com>2021-01-09 17:18:57 -0800
committerGitHub <noreply@github.com>2021-01-09 17:18:57 -0800
commit012d6da4893f9d331d58b14857afa5fc673deeed (patch)
treeda8165fc6550bf7abcbf129c69993d003895fe8c /src
parentccac27e3878438446e5bddfc671c95f438484200 (diff)
downloadrust-012d6da4893f9d331d58b14857afa5fc673deeed.tar.gz
rust-012d6da4893f9d331d58b14857afa5fc673deeed.zip
Fix typo (#1016)
"currenty"!
Diffstat (limited to 'src')
-rw-r--r--src/doc/rustc-dev-guide/src/identifiers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/identifiers.md b/src/doc/rustc-dev-guide/src/identifiers.md
index 3923c9332eb..d04509b683f 100644
--- a/src/doc/rustc-dev-guide/src/identifiers.md
+++ b/src/doc/rustc-dev-guide/src/identifiers.md
@@ -42,7 +42,7 @@ The HIR uses a bunch of different identifiers that coexist and serve different p
   Unlike [`DefId`]s, a [`HirId`] can refer to [fine-grained entities][Node] like expressions,
   but stays local to the current crate.
 
-- A [`BodyId`] identifies a HIR [`Body`] in the current crate. It is currenty only
+- A [`BodyId`] identifies a HIR [`Body`] in the current crate. It is currently only
   a wrapper around a [`HirId`]. For more info about HIR bodies, please refer to the
   [HIR chapter][hir-bodies].