diff options
| author | cuishuang <imcusg@gmail.com> | 2022-03-03 19:47:23 +0800 |
|---|---|---|
| committer | cuishuang <imcusg@gmail.com> | 2022-03-03 19:47:23 +0800 |
| commit | 00fffdddd22cdd796cf4261cdbbf830bee7e4f7b (patch) | |
| tree | 62760ec1b4d7fdf576a82186ad159c7378a7dd1c /compiler/rustc_error_codes | |
| parent | 2f8d1a835b4e7feaf625f74d0d5cb9b84dbc845a (diff) | |
| download | rust-00fffdddd22cdd796cf4261cdbbf830bee7e4f7b.tar.gz rust-00fffdddd22cdd796cf4261cdbbf830bee7e4f7b.zip | |
all: fix some typos
Signed-off-by: cuishuang <imcusg@gmail.com>
Diffstat (limited to 'compiler/rustc_error_codes')
| -rw-r--r-- | compiler/rustc_error_codes/src/error_codes/E0772.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0772.md b/compiler/rustc_error_codes/src/error_codes/E0772.md index 262e52351ef..3b73abaf776 100644 --- a/compiler/rustc_error_codes/src/error_codes/E0772.md +++ b/compiler/rustc_error_codes/src/error_codes/E0772.md @@ -45,7 +45,7 @@ trait object's internal data to be accessed safely from any trait methods. This rule also goes for any lifetime any struct made into a trait object may have. In the implementation for `dyn Person`, the `'2` lifetime representing the -internal data was ommitted, meaning that the compiler inferred the lifetime +internal data was omitted, meaning that the compiler inferred the lifetime `'static`. As a result, the implementation's `is_cool` is inferred by the compiler to look like this: |
