about summary refs log tree commit diff
path: root/src/librustc_codegen_ssa
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2019-05-31 13:34:03 +0200
committerGitHub <noreply@github.com>2019-05-31 13:34:03 +0200
commitf20b5ccdaf331b6c3bce0fe1258c110324827596 (patch)
treed32976a65fae2cd1538d262f6725cf4fdb251e8f /src/librustc_codegen_ssa
parent562602c150080cd3fd1ea9f9bafc7b0a6b4951a4 (diff)
parent66aa18bb44d04b5e0371c4bab240100ad80faebb (diff)
downloadrust-f20b5ccdaf331b6c3bce0fe1258c110324827596.tar.gz
rust-f20b5ccdaf331b6c3bce0fe1258c110324827596.zip
Rollup merge of #61369 - Vallentin:patch-1, r=varkor
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> {