diff --git a/ReadMe.md b/ReadMe.md index 0141de6..5687595 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -78,7 +78,7 @@ The Tigra `AdvancedStepper` code is capable of driving steps at a theoretical ra Command processing is handled by the `CommandProcessor` class. This is actually a port of a more object-oriented library (also developed by Tigra Astronomy) but is one area where we found it necessary to favour smaller resource usage over code structure. Therefore our object oriented design has been collapsed into more procedural code in this implementation. -When a well formed command is received from the serial communications channel it is passed to `DispatchCommand()` which decides whether it is a local or remote command. If local, it is passed on to `CommandProcessor::HandleCommand()`. Otherwise it is passed to teh XBee state machine for transmission on to the remote device. +When a well formed command is received from the serial communications channel it is passed to `DispatchCommand()` which decides whether it is a local or remote command. If local, it is passed on to `CommandProcessor::HandleCommand()`. Otherwise it is passed to the XBee state machine for transmission on to the remote device. Each command verb has its own handler method. `CommandProcessor::HandleCommand()` decides which handler method to call based on the command verb.