diff --git a/src/MoonSharp.Interpreter/DataTypes/DynValue.cs b/src/MoonSharp.Interpreter/DataTypes/DynValue.cs
index 9df80fe0..0f510d64 100644
--- a/src/MoonSharp.Interpreter/DataTypes/DynValue.cs
+++ b/src/MoonSharp.Interpreter/DataTypes/DynValue.cs
@@ -289,7 +289,7 @@ public static DynValue NewTailCallReq(TailCallData tailCallData)
///
/// Creates a new request for a yield of the current coroutine.
///
- /// The yield argumenst.
+ /// The yield arguments.
///
public static DynValue NewYieldReq(DynValue[] args)
{
@@ -303,7 +303,7 @@ public static DynValue NewYieldReq(DynValue[] args)
///
/// Creates a new request for a yield of the current coroutine.
///
- /// The yield argumenst.
+ /// The yield arguments.
///
internal static DynValue NewForcedYieldReq()
{
diff --git a/src/MoonSharp.Interpreter/Interop/Attributes/MoonSharpPropertyAttribute.cs b/src/MoonSharp.Interpreter/Interop/Attributes/MoonSharpPropertyAttribute.cs
index a3fe6fec..53e7a251 100644
--- a/src/MoonSharp.Interpreter/Interop/Attributes/MoonSharpPropertyAttribute.cs
+++ b/src/MoonSharp.Interpreter/Interop/Attributes/MoonSharpPropertyAttribute.cs
@@ -4,7 +4,7 @@ namespace MoonSharp.Interpreter
{
///
- /// Marks a property as a configruation property
+ /// Marks a property as a configuration property
///
[AttributeUsage(AttributeTargets.Property, Inherited = true, AllowMultiple = true)]
public sealed class MoonSharpPropertyAttribute : Attribute