diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html
index 363f529357..ddd2ce453b 100644
--- a/phpBB/docs/coding-guidelines.html
+++ b/phpBB/docs/coding-guidelines.html
@@ -525,7 +525,7 @@ switch ($mode)
break;
default:
- // Always assume that the case got not catched
+ // Always assume that a case was not caught
break;
}
@@ -548,7 +548,7 @@ switch ($mode)
default:
- // Always assume that the case got not catched
+ // Always assume that a case was not cought
break;
}
@@ -576,7 +576,7 @@ switch ($mode)
default:
- // Always assume that the case got not catched
+ // Always assume that a case was not caught
break;
}