Skip to content

Commit

Permalink
Grammer: 'a' => 'an' where applicable.
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephPecoraro committed May 30, 2009
1 parent 3aeec32 commit 7749e17
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion railties/guides/source/active_record_basics.textile
Expand Up @@ -69,7 +69,7 @@ h4. Schema Conventions
ActiveRecord uses naming conventions for the columns in database tables, depending on the purpose of these columns.

* *Foreign keys* - These fields should be named following the pattern table_id i.e. (item_id, order_id). These are the fields that ActiveRecord will look for when you create associations between your models.
* *Primary keys* - By default, ActiveRecord will use a integer column named "id" as the table's primary key. When using "Rails Migrations":http://guides.rails.info/migrations.html to create your tables, this column will be automatically created.
* *Primary keys* - By default, ActiveRecord will use an integer column named "id" as the table's primary key. When using "Rails Migrations":http://guides.rails.info/migrations.html to create your tables, this column will be automatically created.

There are also some optional column names that will create additional features to ActiveRecord instances:

Expand Down
2 changes: 1 addition & 1 deletion railties/guides/source/active_record_querying.textile
Expand Up @@ -238,7 +238,7 @@ WARNING: Building your own conditions as pure strings can leave you vulnerable t

h4. Array Conditions

Now what if that number could vary, say as a argument from somewhere, or perhaps from the user's level status somewhere? The find then becomes something like:
Now what if that number could vary, say as an argument from somewhere, or perhaps from the user's level status somewhere? The find then becomes something like:

<ruby>
Client.first(:conditions => ["orders_count = ?", params[:orders]])
Expand Down
2 changes: 1 addition & 1 deletion railties/guides/source/caching_with_rails.textile
Expand Up @@ -182,7 +182,7 @@ class ProductSweeper < ActionController::Caching::Sweeper
end
</ruby>

You may notice that the actual product gets passed to the sweeper, so if we were caching the edit action for each product, we could add a expire method which specifies the page we want to expire:
You may notice that the actual product gets passed to the sweeper, so if we were caching the edit action for each product, we could add an expire method which specifies the page we want to expire:

<ruby>
expire_action(:controller => 'products', :action => 'edit', :id => product)
Expand Down
Expand Up @@ -401,7 +401,7 @@ And then ask again for the instance_variables:
true
</shell>

Now +@posts+ is a included in the instance variables, because the line defining it was executed.
Now +@posts+ is included in the instance variables, because the line defining it was executed.

TIP: You can also step into *irb* mode with the command +irb+ (of course!). This way an irb session will be started within the context you invoked it. But be warned: this is an experimental feature.

Expand Down
2 changes: 1 addition & 1 deletion railties/guides/source/routing.textile
Expand Up @@ -236,7 +236,7 @@ will recognize incoming URLs containing +photo+ but route the requests to the Im
|GET |/photos/new |Images |new |return an HTML form for creating a new image|
|POST |/photos |Images |create |create a new image|
|GET |/photos/1 |Images |show |display a specific image|
|GET |/photos/1/edit |Images |edit |return an HTML form for editing a image|
|GET |/photos/1/edit |Images |edit |return an HTML form for editing an image|
|PUT |/photos/1 |Images |update |update a specific image|
|DELETE |/photos/1 |Images |destroy |delete a specific image|

Expand Down
2 changes: 1 addition & 1 deletion railties/guides/source/testing.textile
Expand Up @@ -372,7 +372,7 @@ NameError: undefined local variable or method `some_undefined_variable' for #<Po

Notice the 'E' in the output. It denotes a test with error.

NOTE: The execution of each test method stops as soon as any error or a assertion failure is encountered, and the test suite continues with the next method. All test methods are executed in alphabetical order.
NOTE: The execution of each test method stops as soon as any error or an assertion failure is encountered, and the test suite continues with the next method. All test methods are executed in alphabetical order.

h4. What to Include in Your Unit Tests

Expand Down

0 comments on commit 7749e17

Please sign in to comment.