Browse Source

[cli] Fixed initial output messages.

pull/916/head
Joao Matos 8 years ago
parent
commit
2b5c256514
  1. 4
      src/CLI/Generator.cs

4
src/CLI/Generator.cs

@ -255,7 +255,7 @@ namespace CppSharp @@ -255,7 +255,7 @@ namespace CppSharp
public void Run()
{
StringBuilder messageBuilder = new StringBuilder();
messageBuilder.Append("Generating the ");
messageBuilder.Append("Generating ");
switch(options.Kind)
{
@ -267,7 +267,7 @@ namespace CppSharp @@ -267,7 +267,7 @@ namespace CppSharp
break;
}
messageBuilder.Append(" parser bindings for ");
messageBuilder.Append(" bindings for ");
switch (options.Platform)
{

Loading…
Cancel
Save