Skip to content

Commit

Permalink
Fix mistake in instantiating ConsoleAdapter with Console.WriteLine. S…
Browse files Browse the repository at this point in the history
…hould be Console.Write.
  • Loading branch information
zloveless committed Mar 8, 2014
1 parent 5632a74 commit 6ce029d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RxCmd/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private static void Compose()
public static void Main(string[] argv)
{
System.Console.Title = "RxCmd";
Console = new ConsoleAdapter(System.Console.WriteLine);
Console = new ConsoleAdapter(System.Console.Write);

AppDomain.CurrentDomain.UnhandledException += OnUnhandledException;
Compose();
Expand Down

0 comments on commit 6ce029d

Please sign in to comment.