Skip to content

Commit 37cf9b3

Browse files
committed
Fix typos and add a few suggestions
1 parent 076d162 commit 37cf9b3

File tree

13 files changed

+41
-27
lines changed

13 files changed

+41
-27
lines changed

actioncable/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ API documentation is at:
558558

559559
* http://api.rubyonrails.org
560560

561-
Bug reports can be filed for the Ruby on Rails project here:
561+
Bug reports for the Ruby on Rails project can be filed here:
562562

563563
* https://github.com/rails/rails/issues
564564

actionmailer/README.rdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ The latest version of Action Mailer can be installed with RubyGems:
148148

149149
$ gem install actionmailer
150150

151-
Source code can be downloaded as part of the Rails project on GitHub
151+
Source code can be downloaded as part of the Rails project on GitHub:
152152

153153
* https://github.com/rails/rails/tree/master/actionmailer
154154

@@ -166,7 +166,7 @@ API documentation is at
166166

167167
* http://api.rubyonrails.org
168168

169-
Bug reports can be filed for the Ruby on Rails project here:
169+
Bug reports for the Ruby on Rails project can be filed here:
170170

171171
* https://github.com/rails/rails/issues
172172

actionpack/README.rdoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The latest version of Action Pack can be installed with RubyGems:
3030

3131
$ gem install actionpack
3232

33-
Source code can be downloaded as part of the Rails project on GitHub
33+
Source code can be downloaded as part of the Rails project on GitHub:
3434

3535
* https://github.com/rails/rails/tree/master/actionpack
3636

@@ -44,11 +44,11 @@ Action Pack is released under the MIT license:
4444

4545
== Support
4646

47-
API documentation is at
47+
API documentation is at:
4848

4949
* http://api.rubyonrails.org
5050

51-
Bug reports can be filed for the Ruby on Rails project here:
51+
Bug reports for the Ruby on Rails project can be filed here:
5252

5353
* https://github.com/rails/rails/issues
5454

actionview/README.rdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The latest version of Action View can be installed with RubyGems:
1111

1212
$ gem install actionview
1313

14-
Source code can be downloaded as part of the Rails project on GitHub
14+
Source code can be downloaded as part of the Rails project on GitHub:
1515

1616
* https://github.com/rails/rails/tree/master/actionview
1717

@@ -29,7 +29,7 @@ API documentation is at
2929

3030
* http://api.rubyonrails.org
3131

32-
Bug reports can be filed for the Ruby on Rails project here:
32+
Bug reports for the Ruby on Rails project can be filed here:
3333

3434
* https://github.com/rails/rails/issues
3535

actionview/RUNNING_UJS_TESTS.rdoc

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
== Running UJS tests
22

3-
Ensure that you can build the project and run tests.
4-
Run rake ujs:server first, and then run the web tests by
5-
visiting http://localhost:4567 in your browser.
3+
Ensure that you can build the project by running:
4+
rake ujs:server
65

7-
rake ujs:server
6+
Then run the web tests by visiting the following URL in your browser:
7+
8+
http://localhost:4567

actionview/RUNNING_UNIT_TESTS.rdoc

+6-7
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
The easiest way to run the unit tests is through Rake. The default task runs
44
the entire test suite for all classes. For more information, checkout the
5-
full array of rake tasks with "rake -T"
5+
full array of rake tasks with <tt>rake -T</tt>
66

77
Rake can be found at https://ruby.github.io/rake/.
88

99
== Running by hand
1010

11-
To run a single test suite
11+
Run a single test suite:
1212

1313
rake test TEST=path/to/test.rb
1414

@@ -18,10 +18,9 @@ which can be further narrowed down to one test:
1818

1919
== Dependency on Active Record and database setup
2020

21-
Test cases in the test/activerecord/ directory depend on having
22-
activerecord and sqlite3 installed. If Active Record is not in
23-
actionview/../activerecord directory, or the sqlite3 rubygem is not installed,
24-
these tests are skipped.
25-
21+
Test cases in the +test/activerecord/+ directory depend on having
22+
activerecord+ and +sqlite3+ installed. If Active Record is not in
23+
actionview/../activerecord+ directory, or the +sqlite3+ Ruby gem is not installed,
24+
these tests are skipped.
2625
Other tests are runnable from a fresh copy of actionview without any configuration.
2726

activejob/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ The latest version of Active Job can be installed with RubyGems:
100100
$ gem install activejob
101101
```
102102

103-
Source code can be downloaded as part of the Rails project on GitHub
103+
Source code can be downloaded as part of the Rails project on GitHub:
104104

105105
* https://github.com/rails/rails/tree/master/activejob
106106

@@ -117,7 +117,7 @@ API documentation is at:
117117

118118
* http://api.rubyonrails.org
119119

120-
Bug reports can be filed for the Ruby on Rails project here:
120+
Bug reports for the Ruby on Rails project can be filed here:
121121

122122
* https://github.com/rails/rails/issues
123123

activemodel/README.rdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -251,11 +251,11 @@ Active Model is released under the MIT license:
251251

252252
== Support
253253

254-
API documentation is at
254+
API documentation is at:
255255

256256
* http://api.rubyonrails.org
257257

258-
Bug reports can be filed for the Ruby on Rails project here:
258+
Bug reports for the Ruby on Rails project can be filed here:
259259

260260
* https://github.com/rails/rails/issues
261261

activerecord/README.rdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ API documentation is at:
208208

209209
* http://api.rubyonrails.org
210210

211-
Bug reports can be filed for the Ruby on Rails project here:
211+
Bug reports for the Ruby on Rails project can be filed here:
212212

213213
* https://github.com/rails/rails/issues
214214

activestorage/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -143,3 +143,17 @@ Active Storage, with its included JavaScript library, supports uploading directl
143143
## License
144144
145145
Active Storage is released under the [MIT License](https://opensource.org/licenses/MIT).
146+
147+
## Support
148+
149+
API documentation is at:
150+
151+
* http://api.rubyonrails.org
152+
153+
Bug reports for the Ruby on Rails project can be filed here:
154+
155+
* https://github.com/rails/rails/issues
156+
157+
Feature requests should be discussed on the rails-core mailing list here:
158+
159+
* https://groups.google.com/forum/?fromgroups#!forum/rubyonrails-core

activesupport/README.rdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ API documentation is at:
3030

3131
* http://api.rubyonrails.org
3232

33-
Bug reports can be filed for the Ruby on Rails project here:
33+
Bug reports for the Ruby on Rails project can be filed here:
3434

3535
* https://github.com/rails/rails/issues
3636

ci/travis.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def env
135135
if activesupport? && !isolated?
136136
# There is a known issue with the listen tests that causes files to be
137137
# incorrectly GC'ed even when they are still in-use. The current solution
138-
# is to only run them in isolation to avoid randomly failing our test suite.
138+
# is to only run them in isolation to avoid random failures of our test suite.
139139
{ "LISTEN" => "0" }
140140
else
141141
{}

guides/rails_guides/markdown/renderer.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def convert_notes(body)
7575
#
7676
# It is important that we do not eat more than one newline
7777
# because formatting may be wrong otherwise. For example,
78-
# if a bulleted list follows the first item is not rendered
78+
# if a bulleted list follows, the first item is not rendered
7979
# as a list item, but as a paragraph starting with a plain
8080
# asterisk.
8181
body.gsub(/^(TIP|IMPORTANT|CAUTION|WARNING|NOTE|INFO|TODO)[.:](.*?)(\n(?=\n)|\Z)/m) do

0 commit comments

Comments
 (0)