minor typo fix

This commit is contained in:
Youngsuk Kim 2020-02-10 16:32:36 -05:00 committed by Who? Me?!
parent c83c96402a
commit 6a31c24e83
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ parameters, that correspond to the following:
Although there are already many lifetime parameters in the code, making it Although there are already many lifetime parameters in the code, making it
generic uncovered situations where the borrow-checker was passing only due to generic uncovered situations where the borrow-checker was passing only due to
the special nature of the LLVM objects manipulated (they are extern pointers). 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: `LocalAnalyser` in `analyse.rs`, leading to the definition:
```rust,ignore ```rust,ignore