diff --git a/Harmony/Tools/Code.cs b/Harmony/Tools/Code.cs
index ebecfde3..de123c1c 100644
--- a/Harmony/Tools/Code.cs
+++ b/Harmony/Tools/Code.cs
@@ -3,11 +3,11 @@
namespace HarmonyLib
{
- /// By adding the following using statement to your source code:
- /// using static HarmonyLib.Code;
- /// you can i.e. start using Ldarg_1 instead of new CodeMatch(OpCodes.Ldarg_1)
- /// and then you can use array notation to add an operand and/or a name:
- /// Call[myMethodInfo] instead of new CodeMatch(OpCodes.Call, myMethodInfo)
+ ///
+ /// By adding the following using statement to your source code: using static HarmonyLib.Code;
+ /// you can for example start using Ldarg_1 in you code instead of new CodeMatch(OpCodes.Ldarg_1)
+ /// and then you can use array notation to add an operand and/or a name: Call[myMethodInfo] instead of new CodeMatch(OpCodes.Call, myMethodInfo)
+ ///
///
public static class Code
{