diff --git a/output/js/constants.js b/output/js/constants.js index 3002622..8fe3d67 100644 --- a/output/js/constants.js +++ b/output/js/constants.js @@ -1,5 +1,5 @@ // This file contains definitions which help to reduce the amount -// of redunant values in the main file, especially those that could +// of redundant values in the main file, especially those that could // change in the foreseeable future. export const dom = { diff --git a/php/fetch-servers.php b/php/fetch-servers.php index fdb9cc6..dc5a298 100644 --- a/php/fetch-servers.php +++ b/php/fetch-servers.php @@ -371,7 +371,7 @@ $room_array = array( "token" => $token, "name" => $names[$i], // take same index in $names array - "active_users" => -1, // without API we can't query the acutal number + "active_users" => -1, // without API we can't query the actual number "description" => null // same goes for the description ); diff --git a/php/generate-html.php b/php/generate-html.php index af80d4f..9e686d9 100644 --- a/php/generate-html.php +++ b/php/generate-html.php @@ -16,7 +16,7 @@ } foreach (rglob("$TEMPLATES_ROOT/*.php") as $phppath) { - // Do not render auxilliary PHP files. + // Do not render auxiliary PHP files. if (str_contains("$phppath", "/+") || $phppath[0] == "+") continue;