intput -> input
authorJane Doe <github.jane.doe@outlook.com>
Sat, 17 Nov 2018 20:31:07 +0000 (12:31 -0800)
committerJane Doe <github.jane.doe@outlook.com>
Sat, 17 Nov 2018 20:35:55 +0000 (12:35 -0800)
tests/runner/Runner.cs

index d759f01ad2a2dbb7e1d08bc90b63c274ec3d4311..82b615b4d5d26e87c1ab8eb6d25f63a803213430 100644 (file)
@@ -142,9 +142,9 @@ namespace Runner
                 {
                     while (true)
                     {
-                        Task<string> intputTask = queue.ReceiveAsync();
-                        intputTask.Wait(token);
-                        string result = intputTask.Result;
+                        Task<string> inputTask = queue.ReceiveAsync();
+                        inputTask.Wait(token);
+                        string result = inputTask.Result;
                         if (result.StartsWith(text))
                         {
                             var parser = new MICore.MIResults();