diff options
author | Xavier Noria <fxn@hashref.com> | 2013-07-03 08:55:00 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2013-07-03 08:55:00 -0700 |
commit | c1e649a3ff09c2b72b5742886a646d0130e6670f (patch) | |
tree | 0199d0a5f356b8c3afe69804093271b35e19244a | |
parent | 4084b62dae04fbb82e862894856d9a6eca8bea38 (diff) | |
parent | 7ec63bb73e66c0bcca2fb6e429dde6f858483862 (diff) | |
download | rails-c1e649a3ff09c2b72b5742886a646d0130e6670f.tar.gz rails-c1e649a3ff09c2b72b5742886a646d0130e6670f.tar.bz2 rails-c1e649a3ff09c2b72b5742886a646d0130e6670f.zip |
Merge pull request #11271 from ryancw/patch-3
Grammar fix debugging rails applications [ci skip]
-rw-r--r-- | guides/source/debugging_rails_applications.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/debugging_rails_applications.md b/guides/source/debugging_rails_applications.md index c17aa64cac..98f91c1ac6 100644 --- a/guides/source/debugging_rails_applications.md +++ b/guides/source/debugging_rails_applications.md @@ -648,7 +648,7 @@ In this section, you will learn how to find and fix such leaks by using tool suc [Valgrind](http://valgrind.org/) is a Linux-only application for detecting C-based memory leaks and race conditions. -There are Valgrind tools that can automatically detect many memory management and threading bugs, and profile your programs in detail. For example, a C extension in the interpreter calls `malloc()` but is doesn't properly call `free()`, this memory won't be available until the app terminates. +There are Valgrind tools that can automatically detect many memory management and threading bugs, and profile your programs in detail. For example, if a C extension in the interpreter calls `malloc()` but doesn't properly call `free()`, this memory won't be available until the app terminates. For further information on how to install Valgrind and use with Ruby, refer to [Valgrind and Ruby](http://blog.evanweaver.com/articles/2008/02/05/valgrind-and-ruby/) by Evan Weaver. |