aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Gunderloy <MikeG1@larkfarm.com>2008-11-08 04:57:19 -0600
committerMike Gunderloy <MikeG1@larkfarm.com>2008-11-08 04:57:19 -0600
commit0129f00a8131e547672843cf1471a6c1653b74cb (patch)
tree73d027f930414171cfd4c43ebd01986675576404
parent30a789429948886f0ef7d8204420277c68ab4d18 (diff)
downloadrails-0129f00a8131e547672843cf1471a6c1653b74cb.tar.gz
rails-0129f00a8131e547672843cf1471a6c1653b74cb.tar.bz2
rails-0129f00a8131e547672843cf1471a6c1653b74cb.zip
Fix typos in Debugging Guide (core LH #1388)
-rw-r--r--railties/doc/guides/source/debugging_rails_applications.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/doc/guides/source/debugging_rails_applications.txt b/railties/doc/guides/source/debugging_rails_applications.txt
index b45473fc14..4425d9240b 100644
--- a/railties/doc/guides/source/debugging_rails_applications.txt
+++ b/railties/doc/guides/source/debugging_rails_applications.txt
@@ -595,7 +595,7 @@ To list all active catchpoints use `catch`.
There are two ways to resume execution of an application that is stopped in the debugger:
* `continue` [line-specification] (or `c`): resume program execution, at the address where your script last stopped; any breakpoints set at that address are bypassed. The optional argument line-specification allows you to specify a line number to set a one-time breakpoint which is deleted when that breakpoint is reached.
-* `finish` [frame-number] (or `fin`): execute until the selected stack frame returns. If no frame number is given, the application run until the currently selected frame returns. The currently selected frame starts out the most-recent frame or 0 if no frame positioning (e.g up, down or frame) has been performed. If a frame number is given it will run until the specified frame returns.
+* `finish` [frame-number] (or `fin`): execute until the selected stack frame returns. If no frame number is given, the application will run until the currently selected frame returns. The currently selected frame starts out the most-recent frame or 0 if no frame positioning (e.g up, down or frame) has been performed. If a frame number is given it will run until the specified frame returns.
=== Editing
@@ -704,7 +704,7 @@ For further information on how to install Valgrind and use with Ruby, refer to l
There are some Rails plugins to help you to find errors and debug your application. Here is a list of useful plugins for debugging:
-* link:http://github.com/drnic/rails-footnotes/tree/master[Footnotes]: Every Rails page has footnotes that link give request information and link back to your source via TextMate.
+* link:http://github.com/drnic/rails-footnotes/tree/master[Footnotes]: Every Rails page has footnotes that give request information and link back to your source via TextMate.
* link:http://github.com/ntalbott/query_trace/tree/master[Query Trace]: Adds query origin tracing to your logs.
* link:http://github.com/dan-manges/query_stats/tree/master[Query Stats]: A Rails plugin to track database queries.
* link:http://code.google.com/p/query-reviewer/[Query Reviewer]: This rails plugin not only runs "EXPLAIN" before each of your select queries in development, but provides a small DIV in the rendered output of each page with the summary of warnings for each query that it analyzed.