diff options
author | Ryan Williams <ryancwilliams9@gmail.com> | 2013-07-03 11:51:12 -0400 |
---|---|---|
committer | Ryan Williams <ryancwilliams9@gmail.com> | 2013-07-03 11:51:12 -0400 |
commit | 7ec63bb73e66c0bcca2fb6e429dde6f858483862 (patch) | |
tree | 0199d0a5f356b8c3afe69804093271b35e19244a /guides/source | |
parent | 4084b62dae04fbb82e862894856d9a6eca8bea38 (diff) | |
download | rails-7ec63bb73e66c0bcca2fb6e429dde6f858483862.tar.gz rails-7ec63bb73e66c0bcca2fb6e429dde6f858483862.tar.bz2 rails-7ec63bb73e66c0bcca2fb6e429dde6f858483862.zip |
Grammar fix debugging rails applications [ci skip]
Diffstat (limited to 'guides/source')
-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. |