diff --git a/manual/docs/Coding standards - Naming Conventions - Classes.php b/manual/docs/Coding standards - Naming Conventions - Classes.php
index bc5a24b01..88aa837ee 100644
--- a/manual/docs/Coding standards - Naming Conventions - Classes.php
+++ b/manual/docs/Coding standards - Naming Conventions - Classes.php
@@ -9,5 +9,5 @@ Underscores are only permitted in place of the path separator, eg. the filename
- If a class name is comprised of more than one word, the first letter of each new word must be capitalized. Successive capitalized letters
-are not allowed, e.g. a class "Zend_PDF" is not allowed while "Zend_Pdf" is acceptable.
+are not allowed, e.g. a class "XML_Reader" is not allowed while "Xml_Reader" is acceptable.
diff --git a/manual/docs/Coding standards - PHP File Formatting - General.php b/manual/docs/Coding standards - PHP File Formatting - General.php
index 5b095b690..168fb64f7 100644
--- a/manual/docs/Coding standards - PHP File Formatting - General.php
+++ b/manual/docs/Coding standards - PHP File Formatting - General.php
@@ -1,4 +1,4 @@
For files that contain only PHP code, the closing tag ("?>") is never permitted. It is not required by PHP. Not including it prevents trailing whitespace from being accidentally injected into the output.
-IMPORTANT: Inclusion of arbitrary binary data as permitted by __HALT_COMPILER() is prohibited from any Zend framework PHP file or files derived from them. Use of this feature is only permitted for special installation scripts.
+IMPORTANT: Inclusion of arbitrary binary data as permitted by __HALT_COMPILER() is prohibited from any Doctrine framework PHP file or files derived from them. Use of this feature is only permitted for special installation scripts.