diff options
author | Alex Orlenko <zxteam@protonmail.com> | 2021-05-10 19:53:38 +0100 |
---|---|---|
committer | Alex Orlenko <zxteam@protonmail.com> | 2021-05-10 19:53:38 +0100 |
commit | 0bad4a0ff9384c68ce8624e68bbd0bef371bf241 (patch) | |
tree | a5b7835b5860007af943f9ac65bc6a9c1064cb0b /src/userdata.rs | |
parent | 35b75040768571e57f722b9ad4d75b2986cbee6e (diff) | |
download | mlua-0bad4a0ff9384c68ce8624e68bbd0bef371bf241.zip |
Fix spelling
Diffstat (limited to 'src/userdata.rs')
-rw-r--r-- | src/userdata.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/userdata.rs b/src/userdata.rs index 133f518..6b84795 100644 --- a/src/userdata.rs +++ b/src/userdata.rs @@ -761,7 +761,7 @@ impl<'lua> AnyUserData<'lua> { /// Returns a metatable of this `UserData`. /// /// Returned [`UserDataMetatable`] object wraps the original metatable and - /// provides safe access to it methods. + /// provides safe access to its methods. /// /// For `T: UserData + 'static` returned metatable is shared among all instances of type `T`. /// |