about summary refs log tree commit diff
path: root/src/librustc_codegen_ssa
diff options
context:
space:
mode:
authorChristian Vallentin <vallentinsource@gmail.com>2019-05-30 21:29:32 +0200
committerGitHub <noreply@github.com>2019-05-30 21:29:32 +0200
commit66aa18bb44d04b5e0371c4bab240100ad80faebb (patch)
treea4db29c8bf8c2bf4a0586a25f34bfa3c6402e54f /src/librustc_codegen_ssa
parentaee7012fab26d5e307a2fe767e4e7c847c5a45ee (diff)
downloadrust-66aa18bb44d04b5e0371c4bab240100ad80faebb.tar.gz
rust-66aa18bb44d04b5e0371c4bab240100ad80faebb.zip
Fixed lifetime misspelling
Diffstat (limited to 'src/librustc_codegen_ssa')
-rw-r--r--src/librustc_codegen_ssa/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_ssa/README.md b/src/librustc_codegen_ssa/README.md
index 9e1d4291803..11fac239edf 100644
--- a/src/librustc_codegen_ssa/README.md
+++ b/src/librustc_codegen_ssa/README.md
@@ -26,7 +26,7 @@ While the LLVM-specific code will be left in `rustc_codegen_llvm`, all the new t
 
 @irinagpopa started to parametrize the types of `rustc_codegen_llvm` by a generic `Value` type, implemented in LLVM by a reference `&'ll Value`. This work has been extended to all structures inside the `mir` folder and elsewhere, as well as for LLVM's `BasicBlock` and `Type` types.
 
-The two most important structures for the LLVM codegen are `CodegenCx` and `Builder`. They are parametrized by multiple liftime parameters and the type for `Value`.
+The two most important structures for the LLVM codegen are `CodegenCx` and `Builder`. They are parametrized by multiple lifetime parameters and the type for `Value`.
 
 ```rust
 struct CodegenCx<'ll, 'tcx: 'll> {