Changeset 4537

Show
Ignore:
Timestamp:
06/21/08 14:12:31 (13 months ago)
Author:
moksahero
Message:

fixed obvious English typo

Location:
branches/0.11/manual/docs/en/getting-started
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/manual/docs/en/getting-started/installation.txt

    r4159 r4537  
    3636</code> 
    3737 
    38 If you do not have a SVN client, chose one from the list below. Find the **Checkout** option and enter  
    39 svn.phpdoctrine.org/branches/0.10 in the **path** or **repository url** parameter. There is no need for a username  
     38If you do not have a SVN client, chose one from the list below. Find the **Checkout** option and enter svn.phpdoctrine.org/branches/0.10 in the **path** or **repository url** parameter. There is no need for a username  
    4039or password to check out Doctrine.  
    4140 
  • branches/0.11/manual/docs/en/getting-started/starting-new-project.txt

    r4159 r4537  
    5050</code> 
    5151 
    52 Have a look in /path/to/generate/models/ and /path/to/generate/models/generated. You will see User.php and BaseUser.class.php. 
     52Have a look in /path/to/generate/models/ and /path/to/generate/models/generated. You will see User.php and BaseUser.php. 
    5353User.php is for you to add your own custom functionality, and BaseUser.php is the code which is automatically regenerated  
    5454from the YAML schema file above each time. 
  • branches/0.11/manual/docs/en/getting-started/working-with-existing-databases.txt

    r4318 r4537  
    22 
    33A common case when looking for ORM tools like Doctrine is that the database and the code that access it is growing  
    4 large/complex. A more substantial tool is needed then manual SQL code.  
     4large/complex. A more substantial tool is needed than manual SQL code.  
    55 
    66Doctrine has support for generating Doctrine_Record classes from your existing database. There is no need for you to  
     
    2525</code> 
    2626 
    27 Now we would like to convert it into Doctrine record class. It can be achieved easily with the following code snippet: 
     27Now we would like to convert it into Doctrine_Record class. It can be achieved easily with the following code snippet: 
    2828 
    2929<code type="php">