diff --git a/manual/docs/Coding standards - Testing - Writing tests.php b/manual/docs/Coding standards - Testing - Writing tests.php
index a3ab0dfca..9b683ab39 100644
--- a/manual/docs/Coding standards - Testing - Writing tests.php
+++ b/manual/docs/Coding standards - Testing - Writing tests.php
@@ -11,6 +11,7 @@ of the Doctrine_Record class.
However something like Doctrine_PrimaryKey_TestCase is not valid since its way too generic.
+
Every class should have atleast one TestCase equivalent
All testcase classes should inherit Doctrine_UnitTestCase
@@ -29,4 +30,4 @@ divide the method into smaller methods.
ASSERTIONS
-- There should never be assertions within any loops and rarely within functions.
+
- There should never be assertions within any loops and rarely within functions.
diff --git a/manual/docs/Getting started - Setting table definition - Default values.php b/manual/docs/Getting started - Setting table definition - Default values.php
index 80485aa9d..a80071b9d 100644
--- a/manual/docs/Getting started - Setting table definition - Default values.php
+++ b/manual/docs/Getting started - Setting table definition - Default values.php
@@ -4,10 +4,11 @@ First this value is attached to every newly created Record.
hasColumn('name', 'string', 50, 'default name');
- }
+ \$this->hasColumn('name', 'string', 50, array('default' => 'default name'));
+ }
}
\$user = new User();