Various typo fixes - only in comments, no code changes.

This commit is contained in:
Cylindric
2014-02-17 10:58:36 +00:00
parent 3b193d1b5f
commit 8f0cee2a14
5 changed files with 16 additions and 16 deletions

View File

@ -4,9 +4,9 @@
#include "Marlin.h"
#ifdef USE_WATCHDOG
// intialise watch dog with a 1 sec interrupt time
// initialize watch dog with a 1 sec interrupt time
void watchdog_init();
// pad the dog/reset watchdog. MUST be called at least every second after the first watchdog_init or avr will go into emergency procedures..
// pad the dog/reset watchdog. MUST be called at least every second after the first watchdog_init or AVR will go into emergency procedures..
void watchdog_reset();
#else
//If we do not have a watchdog, then we can have empty functions which are optimized away.