Skip to content

Commit a932cea

Browse files
committed
Merge pull request moonsharp-devs#339 from kaisadilla/master
2 parents 533e8b0 + 049263a commit a932cea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/MoonSharp.Interpreter/DataTypes/DynValue.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ public static DynValue NewTailCallReq(TailCallData tailCallData)
289289
/// <summary>
290290
/// Creates a new request for a yield of the current coroutine.
291291
/// </summary>
292-
/// <param name="args">The yield argumenst.</param>
292+
/// <param name="args">The yield arguments.</param>
293293
/// <returns></returns>
294294
public static DynValue NewYieldReq(DynValue[] args)
295295
{
@@ -303,7 +303,7 @@ public static DynValue NewYieldReq(DynValue[] args)
303303
/// <summary>
304304
/// Creates a new request for a yield of the current coroutine.
305305
/// </summary>
306-
/// <param name="args">The yield argumenst.</param>
306+
/// <param name="args">The yield arguments.</param>
307307
/// <returns></returns>
308308
internal static DynValue NewForcedYieldReq()
309309
{

src/MoonSharp.Interpreter/Interop/Attributes/MoonSharpPropertyAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace MoonSharp.Interpreter
44
{
55

66
/// <summary>
7-
/// Marks a property as a configruation property
7+
/// Marks a property as a configuration property
88
/// </summary>
99
[AttributeUsage(AttributeTargets.Property, Inherited = true, AllowMultiple = true)]
1010
public sealed class MoonSharpPropertyAttribute : Attribute

0 commit comments

Comments
 (0)