diff options
| author | Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com> | 2022-03-30 09:10:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-30 09:10:07 +0200 |
| commit | 804cae3f9b2fffb71a3ea31f6a2941ca08b67d4f (patch) | |
| tree | ab91de83c1d55ae3eb3e14b870e20edf5bae736b | |
| parent | ae2f203e24202c8e8337cf8500cb17d8359d611f (diff) | |
| parent | 93aedb67df4cd03b742c9a25874cb716574c48ff (diff) | |
| download | rust-804cae3f9b2fffb71a3ea31f6a2941ca08b67d4f.tar.gz rust-804cae3f9b2fffb71a3ea31f6a2941ca08b67d4f.zip | |
Rollup merge of #95461 - nyurik:spelling, r=lcnr
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; |
