Diff
Property changes:
Name: svk:merge
- d6e91ea2-e33a-0410-98df-1d493bd67c58:/:184
+ d6e91ea2-e33a-0410-98df-1d493bd67c58:/:185
Modified: trunk/docs/manual/en/chapters/WritingSpecsWithPHPSpec.xml (184 => 185)
--- trunk/docs/manual/en/chapters/WritingSpecsWithPHPSpec.xml 2008-01-10 11:38:54 UTC (rev 184)
+++ trunk/docs/manual/en/chapters/WritingSpecsWithPHPSpec.xml 2008-01-10 14:34:17 UTC (rev 185)
@@ -632,13 +632,13 @@
public function itShouldBeAnInsect()
{
- $flee = new Flea;
+ $flea = new Flea;
$this->spec($flea)->should->beAnInsect(); // Flea::isInsect() == TRUE
}
public function itShouldHaveNoWings()
{
- $flee = new Flea;
+ $flea = new Flea;
$this->spec($flea)->shouldNot->haveWings(); // Flea::hasWings() == FALSE
}
}</programlisting>
@@ -657,4 +657,4 @@
</section>
</section>
</section>
-</chapter>
\ No newline at end of file
+</chapter>
Modified: trunk/docs/manual/ja/chapters/WritingSpecsWithPHPSpec.xml (184 => 185)
--- trunk/docs/manual/ja/chapters/WritingSpecsWithPHPSpec.xml 2008-01-10 11:38:54 UTC (rev 184)
+++ trunk/docs/manual/ja/chapters/WritingSpecsWithPHPSpec.xml 2008-01-10 14:34:17 UTC (rev 185)
@@ -740,13 +740,13 @@
public function itShouldBeAnInsect()
{
- $flee = new Flea;
+ $flea = new Flea;
$this->spec($flea)->should->beAnInsect(); // Flea::isInsect() == TRUE
}
public function itShouldHaveNoWings()
{
- $flee = new Flea;
+ $flea = new Flea;
$this->spec($flea)->shouldNot->haveWings(); // Flea::hasWings() == FALSE
}
}</programlisting>