Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
KenwoodFox committed Sep 3, 2024
1 parent 494b952 commit e100ddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Firmware/src/command_dispatcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const CommandMapping_t commandTable[] = {
// Simple retrieve version
void handleVersionCommand(Command_t *cmd)
{
console_printf(cmd->console, "Firmware version: %s, There are %suncommitted changes\n", git_Describe(), git_AnyUncommittedChanges() ? "" : "no");
console_printf(cmd->console, "Firmware version: %s, There are %suncommitted changes\n", git_Describe(), git_AnyUncommittedChanges() ? "" : "no ");
}

// Handling an unknown command
Expand Down

0 comments on commit e100ddb

Please sign in to comment.