diff options
author | Matthew Draper <matthew@trebex.net> | 2014-08-25 01:48:28 +0930 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2014-08-25 01:48:28 +0930 |
commit | da3d8474221f6652983ac8460da635b89990c923 (patch) | |
tree | 5ffa59198cdb0f0561da14929483aa4b9eae9a92 | |
parent | aa58167486a9a084b1e8f5c7def0c19638c31b24 (diff) | |
parent | 0e0495786d3e02932a07668ecac09cc7acce6daa (diff) | |
download | rails-da3d8474221f6652983ac8460da635b89990c923.tar.gz rails-da3d8474221f6652983ac8460da635b89990c923.tar.bz2 rails-da3d8474221f6652983ac8460da635b89990c923.zip |
Merge pull request #16676 from tgxworld/web_console_release_note_fixes
Grammer and spelling pass on web console release note. [CI SKIP]
-rw-r--r-- | guides/source/4_2_release_notes.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/guides/source/4_2_release_notes.md b/guides/source/4_2_release_notes.md index dfc1876c95..1d105ffd46 100644 --- a/guides/source/4_2_release_notes.md +++ b/guides/source/4_2_release_notes.md @@ -67,14 +67,14 @@ Web Console is a set of debugging tools for your Rails application. It comes with an interactive console for every error page, a `console` view helper and VT100 compatible terminal. -The interactive console on the error pages let you execude code where the -exception originated. Its quite handy to introspect the state that let to that +The interactive console on the error pages lets you execute code where the +exception originated. It's quite handy to introspect the state that led to the error. The `console` view helper launches an interactive console with the context of -the view right on the page its invoked on. +the view right on the page it's invoked on. -Finally, you can lunch a VT100 terminal that runs `rails console`. If you need +Finally, you can launch a VT100 terminal that runs `rails console`. If you need to create or modify existing test data, you can do that straight from the browser. |