You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Pushes a metatable of the given type onto the stack.
@@ -668,15 +668,15 @@ public interface ILua
668
668
/// and <c>k</c> is an object on top of the stack.
669
669
/// </summary>
670
670
/// <remarks>
671
-
/// Unlike <see cref="ILua.GetField(int, in string)"/>, allows to get a value from the table when the key in the key-value pair is not a string.
671
+
/// Unlike <see cref="ILua.GetField(int, string)"/>, allows to get a value from the table when the key in the key-value pair is not a string.
672
672
///
673
673
/// Pops a key object from the stack.
674
674
///
675
675
/// See <c>lua_gettable</c> function in the Lua manual: https://www.lua.org/manual/5.1/manual.html
676
676
/// </remarks>
677
677
/// <param name="iStackPos">A stack position of the table to get a value from.</param>
678
678
/// <example>
679
-
/// The following example shows how <see cref="ILua.GetTable(int)"/> can be used to get a value from the table instead of <see cref="ILua.GetField(int, in string)"/>.
679
+
/// The following example shows how <see cref="ILua.GetTable(int)"/> can be used to get a value from the table instead of <see cref="ILua.GetField(int, string)"/>.
680
680
/// <code>
681
681
/// public static int GetTableExample(ILua lua)
682
682
/// {
@@ -691,7 +691,7 @@ public interface ILua
691
691
/// }
692
692
/// </code>
693
693
/// </example>
694
-
/// <seealso cref="ILua.GetField(int, in string)"/>
694
+
/// <seealso cref="ILua.GetField(int, string)"/>
695
695
publicvoidGetTable(intiStackPos);
696
696
697
697
/// <summary>
@@ -701,15 +701,15 @@ public interface ILua
701
701
/// and <c>k</c> is a key at stack index <c>-2</c>.
702
702
/// </summary>
703
703
/// <remarks>
704
-
/// Unlike <see cref="ILua.SetField(int, in string)"/>, allows to add a key-value pair to a table with the key not being a string.
704
+
/// Unlike <see cref="ILua.SetField(int, string)"/>, allows to add a key-value pair to a table with the key not being a string.
705
705
///
706
706
/// Pops both the key and the value from the stack.
707
707
///
708
708
/// See <c>lua_settable</c> function in the Lua manual: https://www.lua.org/manual/5.1/manual.html
709
709
/// </remarks>
710
710
/// <param name="iStackPos">A stack position of the table to add a key-value pair to.</param>
711
711
/// <example>
712
-
/// The following example shows how <see cref="ILua.SetTable(int)"/> can be used instead of <see cref="ILua.SetField(int, in string)"/>.
712
+
/// The following example shows how <see cref="ILua.SetTable(int)"/> can be used instead of <see cref="ILua.SetField(int, string)"/>.
713
713
/// <code>
714
714
/// public static int SetTableExample(ILua lua)
715
715
/// {
@@ -723,7 +723,7 @@ public interface ILua
723
723
/// }
724
724
/// </code>
725
725
/// </example>
726
-
/// <seealso cref="ILua.SetField(int, in string)"/>
726
+
/// <seealso cref="ILua.SetField(int, string)"/>
727
727
publicvoidSetTable(intiStackPos);
728
728
729
729
/// <summary>
@@ -882,7 +882,7 @@ public class GmodLuaException : Exception
882
882
/// </summary>
883
883
/// <param name="lua_error_code">A Lua exception code. Must be one of the values defined by Lua specification.</param>
0 commit comments