Skip to content

Commit 1a820f3

Browse files
authored
Merge pull request rails#54626 from KAUTH/fix-incorrect-backticks-in-getting-started-docs
[ci skip] Fix incorrect backticks in getting-started docs
2 parents da26f40 + d2d4486 commit 1a820f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

guides/source/getting_started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ Controllers & Actions
857857
Now that we've defined routes for Products, let's implement the controller and
858858
actions to handle requests to these URLs.
859859

860-
This command will generate a `ProductsController with an index action. Since
860+
This command will generate a `ProductsController` with an index action. Since
861861
we've already set up routes, we can skip that part of the generator using a
862862
flag.
863863

@@ -1080,8 +1080,8 @@ helpers you can use for generating URLs with Ruby code.
10801080

10811081
These route prefixes give us helpers like the following:
10821082

1083-
* `products_path` generates `"/products`"`
1084-
* `products_url` generates `"http://localhost:3000/products`"`
1083+
* `products_path` generates `"/products"`
1084+
* `products_url` generates `"http://localhost:3000/products"`
10851085
* `product_path(1)` generates `"/products/1"`
10861086
* `product_url(1)` generates `"http://localhost:3000/products/1"`
10871087

0 commit comments

Comments
 (0)