From aa053d633ae4b94db5ad1ffd6005428476b07be6 Mon Sep 17 00:00:00 2001 From: Jason T Alborough Date: Fri, 21 Feb 2020 18:17:06 -0500 Subject: [PATCH] Small fix to code bloc in Debugging.md --- Debugging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Debugging.md b/Debugging.md index 7652930..7f59617 100644 --- a/Debugging.md +++ b/Debugging.md @@ -48,7 +48,7 @@ Debug.Console(0, "Hello {0}", world); // This overload takes an IKeyed as the second parameter and the resulting statement will // print the Key of the device in console to help identify the class instance the message // originated from -Debug.Console(0, this, "Hello World); +Debug.Console(0, this, "Hello World"); // prints: [timestamp]App 1:[deviceKey]Hello World // Each of the above overloads has a corresponding variant that takes an argument to indicate