diff --git a/README.md b/README.md index 9423570..c6d7c18 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,7 @@ setTimeout(restart, 86400000); **Good:** ```ts -// Declare them as capitalized symbolic constants. +// Declare them as capitalized named constants. const MILLISECONDS_PER_DAY = 24 * 60 * 60 * 1000; // 86400000 setTimeout(restart, MILLISECONDS_PER_DAY);