Skip to content

Commit 722303b

Browse files
authored
Merge pull request rails#42134 from jbampton/fix-word-case
Fix case of GitHub, JavaScript, TypeScript [ci skip]
2 parents ced1da9 + 6d64953 commit 722303b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

actionview/test/ujs/public/vendor/qunit.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1896,7 +1896,7 @@ QUnit.equiv = (function() {
18961896
* http://flesler.blogspot.com Licensed under BSD
18971897
* (http://www.opensource.org/licenses/bsd-license.php) Date: 5/15/2008
18981898
*
1899-
* @projectDescription Advanced and extensible data dumping for Javascript.
1899+
* @projectDescription Advanced and extensible data dumping for JavaScript.
19001900
* @version 1.0.0
19011901
* @author Ariel Flesler
19021902
* @link {http://flesler.blogspot.com/2008/05/jsdump-pretty-dump-of-any-javascript.html}
@@ -2123,7 +2123,7 @@ QUnit.jsDump = (function() {
21232123
}());
21242124

21252125
/*
2126-
* Javascript Diff Algorithm
2126+
* JavaScript Diff Algorithm
21272127
* By John Resig (http://ejohn.org/)
21282128
* Modified by Chu Alan "sprite"
21292129
*

guides/source/contributing_to_ruby_on_rails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ NOTE: Bugs in the most recent released version of Ruby on Rails will likely get
2929

3030
### Creating a Bug Report
3131

32-
If you've found a problem in Ruby on Rails that is not a security risk, search the [Issues](https://github.com/rails/rails/issues) on Github, in case it has already been reported. If you cannot find any open GitHub issues addressing the problem you found, your next step will be to [open a new issue](https://github.com/rails/rails/issues/new). (See the next section for reporting security issues.)
32+
If you've found a problem in Ruby on Rails that is not a security risk, search the [Issues](https://github.com/rails/rails/issues) on GitHub, in case it has already been reported. If you cannot find any open GitHub issues addressing the problem you found, your next step will be to [open a new issue](https://github.com/rails/rails/issues/new). (See the next section for reporting security issues.)
3333

3434
Your issue report should contain a title and a clear description of the issue at the bare minimum. You should include as much relevant information as possible and a code sample that demonstrates the issue. It would be even better to include a failing unit test that tests the expected behavior. Your goal should be to make it easy for yourself - and others - to reproduce the bug and figure out a fix.
3535

guides/source/webpacker.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Webpacker is installed by default in Rails 6.0 and up. You can install it with a
5555

5656
|File |Location |Explanation |
5757
|------------------------|------------------------|----------------------------------------------------------------------------------------------------|
58-
|Javascript Folder | `app/javascript` |A place for your front-end source |
58+
|JavaScript Folder | `app/javascript` |A place for your front-end source |
5959
|Webpacker Configuration | `config/webpacker.yml` |Configure the Webpacker gem |
6060
|Babel Configuration | `babel.config.js` |Configuration for the [Babel](https://babeljs.io) JavaScript Compiler |
6161
|PostCSS Configuration | `postcss.config.js` |Configuration for the [PostCSS](https://postcss.org) CSS Post-Processor |
@@ -74,14 +74,14 @@ INFO. It's possible to install frameworks not included in this list. These are b
7474

7575
|Framework |Install command |Description |
7676
|------------------|----------------------------------------|--------------------------------------------------|
77-
|Angular |`bin/rails webpacker:install:angular` |Sets up Angular and Typescript |
77+
|Angular |`bin/rails webpacker:install:angular` |Sets up Angular and TypeScript |
7878
|CoffeeScript |`bin/rails webpacker:install:coffee` |Sets up CoffeeScript |
7979
|Elm |`bin/rails webpacker:install:elm` |Sets up Elm |
80-
|ERB |`bin/rails webpacker:install:erb` |Sets up ERB support on your Javascript files |
80+
|ERB |`bin/rails webpacker:install:erb` |Sets up ERB support on your JavaScript files |
8181
|React |`bin/rails webpacker:install:react` |Sets up ReactJS |
8282
|Stimulus |`bin/rails webpacker:install:stimulus` |Sets up StimulusJS |
8383
|Svelte |`bin/rails webpacker:install:svelte` |Sets up Svelte JS |
84-
|TypeScript |`bin/rails webpacker:install:typescript`|Sets up Typescript for your project using Babel's TypeScript support|
84+
|TypeScript |`bin/rails webpacker:install:typescript`|Sets up TypeScript for your project using Babel's TypeScript support|
8585
|Vue |`bin/rails webpacker:install:vue` |Sets up VueJS |
8686

8787
For more information about the existing integrations, consult the [README](https://github.com/rails/webpacker#integrations).

0 commit comments

Comments
 (0)