Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/Misc/LiveDotNet/Editor/LiveDotNet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void doPatch()
IPAddress ip;
if (!IPAddress.TryParse(strIp, out ip))
{
throw new FormatException("Invalid ip-adress");
throw new FormatException("Invalid ip-address");
}

IPEndPoint remoteEndPoint = new IPEndPoint(ip, port);
Expand Down
10 changes: 5 additions & 5 deletions Source/VSProj/Src/Tools/CSFix.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ public static class Program
static void usage()
{
Console.WriteLine("Usage:");
Console.WriteLine("IFix -inject core_assmbly_path assmbly_path config_path patch_file_output_path"
+ " injected_assmbly_output_path [search_path1, search_path2 ...]");
Console.WriteLine("IFix -inherit_inject core_assmbly_path assmbly_path config_path "
+ "patch_file_output_path injected_assmbly_output_path inherit_assmbly_path "
Console.WriteLine("IFix -inject core_assembly_path assembly_path config_path patch_file_output_path"
+ " injected_assembly_output_path [search_path1, search_path2 ...]");
Console.WriteLine("IFix -inherit_inject core_assembly_path assembly_path config_path "
+ "patch_file_output_path injected_assembly_output_path inherit_assembly_path "
+ "[search_path1, search_path2 ...]");
Console.WriteLine("IFix -patch core_assmbly_path assmbly_path injected_assmbly_path"
Console.WriteLine("IFix -patch core_assembly_path assembly_path injected_assembly_path"
+ " config_path patch_file_output_path [search_path1, search_path2 ...]");
}

Expand Down