diff options
Diffstat (limited to 'src/libsyntax_ext')
| -rw-r--r-- | src/libsyntax_ext/deriving/generic/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax_ext/deriving/generic/mod.rs b/src/libsyntax_ext/deriving/generic/mod.rs index 3660d2fe46a..0dfe9cb970e 100644 --- a/src/libsyntax_ext/deriving/generic/mod.rs +++ b/src/libsyntax_ext/deriving/generic/mod.rs @@ -1439,7 +1439,7 @@ impl<'a> MethodDef<'a> { &catch_all_substructure); // Final wrinkle: the self_args are expressions that deref - // down to desired l-values, but we cannot actually deref + // down to desired places, but we cannot actually deref // them when they are fed as r-values into a tuple // expression; here add a layer of borrowing, turning // `(*self, *__arg_0, ...)` into `(&*self, &*__arg_0, ...)`. @@ -1516,7 +1516,7 @@ impl<'a> MethodDef<'a> { } else { // Final wrinkle: the self_args are expressions that deref - // down to desired l-values, but we cannot actually deref + // down to desired places, but we cannot actually deref // them when they are fed as r-values into a tuple // expression; here add a layer of borrowing, turning // `(*self, *__arg_0, ...)` into `(&*self, &*__arg_0, ...)`. |
