mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Grammar fix debugging rails applications [ci skip]
This commit is contained in:
parent
4084b62dae
commit
7ec63bb73e
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue