about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan DPC <99973273+Dylan-DPC@users.noreply.github.com>2022-03-30 09:10:07 +0200
committerGitHub <noreply@github.com>2022-03-30 09:10:07 +0200
commit804cae3f9b2fffb71a3ea31f6a2941ca08b67d4f (patch)
treeab91de83c1d55ae3eb3e14b870e20edf5bae736b
parentae2f203e24202c8e8337cf8500cb17d8359d611f (diff)
parent93aedb67df4cd03b742c9a25874cb716574c48ff (diff)
downloadrust-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.rs2
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;