aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/coding-guidelines.html
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/docs/coding-guidelines.html')
-rw-r--r--phpBB/docs/coding-guidelines.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html
index 649ddc2988..942769b57a 100644
--- a/phpBB/docs/coding-guidelines.html
+++ b/phpBB/docs/coding-guidelines.html
@@ -517,7 +517,7 @@ switch ($mode)
break;
default:
- // Always assume that the case got not catched
+ // Always assume that a case was not caught
break;
}
</pre></div>
@@ -540,7 +540,7 @@ switch ($mode)
default:
- // Always assume that the case got not catched
+ // Always assume that a case was not caught
break;
}
@@ -568,7 +568,7 @@ switch ($mode)
default:
- // Always assume that the case got not catched
+ // Always assume that a case was not caught
break;
}