about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuri Astrakhan <YuriAstrakhan@gmail.com>2022-03-30 01:39:38 -0400
committerYuri Astrakhan <YuriAstrakhan@gmail.com>2022-03-30 01:39:38 -0400
commit93aedb67df4cd03b742c9a25874cb716574c48ff (patch)
treece5637a832a4615c7c39ed88330d3397e04278f3
parent1bd90f86447a4b5460d53d412e376d1cc8055d97 (diff)
downloadrust-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.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;