From 67f8e1d49c4b2b8eb9884ed24fea3d3ad0b6a69e Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Fri, 26 Jan 2018 18:35:21 +0100 Subject: [PATCH] Fix rustdoc rendering warning --- src/error.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/error.rs b/src/error.rs index 212077c..9c17861 100644 --- a/src/error.rs +++ b/src/error.rs @@ -31,10 +31,11 @@ pub enum Error { /// This is an error because `rlua` callbacks are FnMut and thus can only be mutably borrowed /// once. RecursiveCallbackError, - /// Lua code has accessed a [`UserData`] value that was already garbage collected + /// Lua code has accessed a [`UserData`] value that was already garbage collected. /// /// This can happen when a [`UserData`] has a custom `__gc` metamethod, this method resurrects /// the [`UserData`], and then the [`UserData`] is subsequently accessed. + /// /// [`UserData`]: trait.UserData.html ExpiredUserData, /// A Rust value could not be converted to a Lua value.