Skip to content

Commit b0048c7

Browse files
Capitalize "Rails" [ci-skip]
1 parent bf6c20e commit b0048c7

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

activemodel/lib/active_model/validations/validates.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module ClassMethods
1010
# validators can be overridden inside specific classes by creating
1111
# custom validator classes in their place such as PresenceValidator.
1212
#
13-
# Examples of using the default rails validators:
13+
# Examples of using the default Rails validators:
1414
#
1515
# validates :username, absence: true
1616
# validates :terms, acceptance: true

guides/source/2_3_release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ options_from_collection_for_select(@product.sizes, :name, :id, :disabled => lamb
469469
```
470470

471471
* Lead Contributor: [Tekin Suleyman](http://tekin.co.uk/)
472-
* More Information: [New in rails 2.3 - disabled option tags and lambdas for selecting and disabling options from collections](https://tekin.co.uk/2009/03/new-in-rails-23-disabled-option-tags-and-lambdas-for-selecting-and-disabling-options-from-collections)
472+
* More Information: [New in Rails 2.3 - disabled option tags and lambdas for selecting and disabling options from collections](https://tekin.co.uk/2009/03/new-in-rails-23-disabled-option-tags-and-lambdas-for-selecting-and-disabling-options-from-collections)
473473

474474
### A Note About Template Loading
475475

guides/source/7_1_release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Major Features
2323

2424
### Generate Dockerfiles for new Rails applications
2525

26-
[Default Docker support](https://github.com/rails/rails/pull/46762) to new rails applications.
26+
[Default Docker support](https://github.com/rails/rails/pull/46762) to new Rails applications.
2727
When generating a new application, Rails will now include Docker-related files in the application.
2828

2929
These files serve as a foundational setup for deploying your Rails application in a

guides/source/active_storage_overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ end
463463
```
464464

465465
If you know in advance that your variants will be accessed, you can specify that
466-
rails should generate them ahead of time:
466+
Rails should generate them ahead of time:
467467

468468
```ruby
469469
class User < ApplicationRecord

guides/source/generators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ $ cd myapp
3131
$ bin/rails generate
3232
```
3333

34-
NOTE: To create a rails application we use the `rails` global command which uses
34+
NOTE: To create a Rails application we use the `rails` global command which uses
3535
the version of Rails installed via `gem install rails`. When inside the
3636
directory of your application, we use the `bin/rails` command which uses the
3737
version of Rails bundled with the application.

railties/lib/rails/generators/base.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def self.class_option(name, options = {}) # :nodoc:
222222
end
223223

224224
# Returns the default source root for a given generator. This is used internally
225-
# by rails to set its generators source root. If you want to customize your source
225+
# by Rails to set its generators source root. If you want to customize your source
226226
# root, you should use source_root.
227227
def self.default_source_root
228228
return unless base_name && generator_name

0 commit comments

Comments
 (0)