From 5724b5f11289dd1f91649ca208983d02d8bb231b Mon Sep 17 00:00:00 2001 From: Alex Orlenko Date: Sun, 20 Oct 2024 13:23:57 +0100 Subject: [PATCH] cargo fmt --- src/scope.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/scope.rs b/src/scope.rs index 0aa3b897..3f379047 100644 --- a/src/scope.rs +++ b/src/scope.rs @@ -152,9 +152,9 @@ impl<'scope, 'env: 'scope> Scope<'scope, 'env> { /// `'static` types. This means that it is impossible, once the userdata is created, to get a /// reference to it back *out* of an [`AnyUserData`] handle. This also implies that the /// "function" type methods that can be added via [`UserDataMethods`] (the ones that accept - /// [`AnyUserData`] as a first parameter) are vastly less useful. Also, there is no way to re-use - /// a single metatable for multiple non-'static types, so there is a higher cost associated with - /// creating the userdata metatable each time a new userdata is created. + /// [`AnyUserData`] as a first parameter) are vastly less useful. Also, there is no way to + /// re-use a single metatable for multiple non-'static types, so there is a higher cost + /// associated with creating the userdata metatable each time a new userdata is created. /// /// [`TypeId`]: std::any::TypeId /// [`UserDataMethods`]: crate::UserDataMethods