about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorYoungsuk Kim <joseph942010@gmail.com>2020-02-10 16:32:36 -0500
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-02-10 16:26:29 -0600
commit060fe72ccd962bc8ddeb89646cf339f3d0b669dd (patch)
tree65f31729eb9ec5e7a415027fe25baa24208e1a8b /src/doc/rustc-dev-guide
parent61a6004d68dd0db37d782ca5963cba70c5dfa717 (diff)
downloadrust-060fe72ccd962bc8ddeb89646cf339f3d0b669dd.tar.gz
rust-060fe72ccd962bc8ddeb89646cf339f3d0b669dd.zip
minor typo fix
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/codegen/backend-agnostic.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/codegen/backend-agnostic.md b/src/doc/rustc-dev-guide/src/codegen/backend-agnostic.md
index 3bf1bde83c5..cda841b2d02 100644
--- a/src/doc/rustc-dev-guide/src/codegen/backend-agnostic.md
+++ b/src/doc/rustc-dev-guide/src/codegen/backend-agnostic.md
@@ -89,7 +89,7 @@ parameters, that correspond to the following:
 Although there are already many lifetime parameters in the code, making it
 generic uncovered situations where the borrow-checker was passing only due to
 the special nature of the LLVM objects manipulated (they are extern pointers).
-For instance, a additional lifetime parameter had to be added to
+For instance, an additional lifetime parameter had to be added to
 `LocalAnalyser` in `analyse.rs`, leading to the definition:
 
 ```rust,ignore