Merge pull request #49277 from akhilgkrishnan/add-missing-dollar-s-gn

Add missing dollar sign for bash script [skip ci]
This commit is contained in:
Eileen M. Uchitelle 2023-09-14 14:13:06 -04:00 committed by GitHub
commit ff6bf8dd7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4,8 +4,8 @@
defined by Active Record.
```bash
bin/rails generate model Post save
bin/rails generate model Post hash
$ bin/rails generate model Post save
$ bin/rails generate model Post hash
```
*Petrik de Heus*
@ -15,9 +15,9 @@
* Add ability to show slow tests to the test runner
```bash
bin/test --profile # additionally prints 10 (default) slowest tests
$ bin/test --profile # additionally prints 10 (default) slowest tests
# or
bin/test --profile 20 # prints 20 slowest tests
$ bin/test --profile 20 # prints 20 slowest tests
```
*fatkodima*
@ -25,7 +25,7 @@
* `rails new --javascript` generator now supports Bun
```bash
rails new my_new_app --javascript=bun
$ rails new my_new_app --javascript=bun
```
*Jason Meller*