]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - docs/unit_testing.md
Usbasploader bootloader option addition (#6304)
[qmk_firmware.git] / docs / unit_testing.md
index 31aa79f82d4fd3a421fb4d6178fac1252e71e929..06d23a9cce020019a43c3b0d755b84d690ed0e41 100644 (file)
@@ -52,7 +52,7 @@ In that model you would emulate the input, and expect a certain output from the
 
 Sometimes you might wonder why a variable gets changed and where, and this can be quite tricky to track down without having a debugger. It's of course possible to manually add print statements to track it, but you can also enable the variable trace feature. This works for both for variables that are changed by the code, and when the variable is changed by some memory corruption.
 
-To take the feature into use add `VARIABLE_TRACE=x` to the end of you make command. `x` represents the number of variables you want to trace, which is usually 1. 
+To take the feature into use add `VARIABLE_TRACE=x` to the end of you make command. `x` represents the number of variables you want to trace, which is usually 1.
 
 Then at a suitable place in the code, call `ADD_TRACED_VARIABLE`, to begin the tracing. For example to trace all the layer changes, you can do this
 ```c