We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 39e6eea + df497cf commit 2fb658dCopy full SHA for 2fb658d
guides/source/debugging_rails_applications.md
@@ -401,7 +401,7 @@ To see the previous ten lines you should type `list-` (or `l-`).
401
7 byebug
402
8 @articles = Article.find_recent
403
9
404
- 10 respond_to do |format|
+ 10 respond_to do |format|
405
```
406
407
This way you can move inside the file and see the code above the line where you
@@ -540,9 +540,9 @@ command later in this guide).
540
541
542
543
-=> 10 respond_to do |format|
544
- 11 format.html # index.html.erb
545
- 12 format.json { render json: @articles }
+=> 10 respond_to do |format|
+ 11 format.html # index.html.erb
+ 12 format.json { render json: @articles }
546
13 end
547
14 end
548
15
0 commit comments