diff options
| author | Yuri Astrakhan <YuriAstrakhan@gmail.com> | 2022-03-30 01:39:38 -0400 |
|---|---|---|
| committer | Yuri Astrakhan <YuriAstrakhan@gmail.com> | 2022-03-30 01:39:38 -0400 |
| commit | 93aedb67df4cd03b742c9a25874cb716574c48ff (patch) | |
| tree | ce5637a832a4615c7c39ed88330d3397e04278f3 | |
| parent | 1bd90f86447a4b5460d53d412e376d1cc8055d97 (diff) | |
| download | rust-93aedb67df4cd03b742c9a25874cb716574c48ff.tar.gz rust-93aedb67df4cd03b742c9a25874cb716574c48ff.zip | |
Spellchecking some comments
This PR attempts to clean up some minor spelling mistakes in comments
| -rw-r--r-- | example/arbitrary_self_types_pointers_and_wrappers.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/arbitrary_self_types_pointers_and_wrappers.rs b/example/arbitrary_self_types_pointers_and_wrappers.rs index e9876837dd8..d270fec6b71 100644 --- a/example/arbitrary_self_types_pointers_and_wrappers.rs +++ b/example/arbitrary_self_types_pointers_and_wrappers.rs @@ -36,7 +36,7 @@ impl<T: DispatchFromDyn<U>, U> DispatchFromDyn<Wrapper<U>> for Wrapper<T> {} trait Trait { // This method isn't object-safe yet. Unsized by-value `self` is object-safe (but not callable - // without unsized_locals), but wrappers arond `Self` currently are not. + // without unsized_locals), but wrappers around `Self` currently are not. // FIXME (mikeyhew) uncomment this when unsized rvalues object-safety is implemented // fn wrapper(self: Wrapper<Self>) -> i32; fn ptr_wrapper(self: Ptr<Wrapper<Self>>) -> i32; |
