diff --git a/fantemp/terminal.hpp b/fantemp/terminal.hpp index 6fecc4c..adf34a2 100644 --- a/fantemp/terminal.hpp +++ b/fantemp/terminal.hpp @@ -171,14 +171,14 @@ class Terminal { static void printHelp() { m_serial << F("FanTemp command overview: ") << detail::ENDL; - m_serial << detail::HELP_CMD << F(" .......: print this help message") << detail::ENDL; + m_serial << detail::HELP_CMD << F(" .......: prints this help message") << detail::ENDL; m_serial << detail::SHOW_CMD << F(" .......: shows current temperature and fan speed") << detail::ENDL; m_serial << detail::CURVE_CMD << F(" ......: shows mapping from temperature to fan speed") << detail::ENDL; m_serial << detail::MONITOR_CMD << F(" ....: loops the show command until Ctrl + C is pressed") << detail::ENDL; m_serial << detail::BOOTLOADER_CMD << F(" .: enters the bootloader after 3 seconds") << detail::ENDL; - m_serial << detail::UPTIME_CMD << F(" .....: show system uptime") << detail::ENDL; - m_serial << detail::STATISTICS_CMD << F(" .: Print overall statistics like min and max temp") << detail::ENDL; - m_serial << detail::HISTOGRAM_CMD << F(" ..: Prints a histogram of the temperature") << detail::ENDL; + m_serial << detail::UPTIME_CMD << F(" .....: shows system uptime") << detail::ENDL; + m_serial << detail::STATISTICS_CMD << F(" .: prints overall statistics like min and max temp") << detail::ENDL; + m_serial << detail::HISTOGRAM_CMD << F(" ..: prints a histogram of the temperature") << detail::ENDL; m_serial << detail::VERSION_CMD << F(" ....: displays firmware version") << detail::ENDL; }