diff options
author | Chris Smith <toonarmy@phpbb.com> | 2008-10-13 02:24:10 +0000 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2008-10-13 02:24:10 +0000 |
commit | ba3d777bbdadca91b61a94e37134e7b4438589aa (patch) | |
tree | baa4d220e0ee9c9b3631a5a1f8bdfeca6752fa0b /phpBB/docs | |
parent | f4f5d9a471b5f5a74895b5e7bf6037235589abfc (diff) | |
download | forums-ba3d777bbdadca91b61a94e37134e7b4438589aa.tar forums-ba3d777bbdadca91b61a94e37134e7b4438589aa.tar.gz forums-ba3d777bbdadca91b61a94e37134e7b4438589aa.tar.bz2 forums-ba3d777bbdadca91b61a94e37134e7b4438589aa.tar.xz forums-ba3d777bbdadca91b61a94e37134e7b4438589aa.zip |
Grammar #28865
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9008 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/docs')
-rw-r--r-- | phpBB/docs/coding-guidelines.html | 6 |
1 files changed, 3 insertions, 3 deletions
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; } </pre></div> @@ -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; } |