aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/debugging_rails_applications.md
diff options
context:
space:
mode:
authorJacob Bednarz <jacob.bednarz@gmail.com>2015-11-24 12:43:46 +1100
committerJacob Bednarz <jacob.bednarz@gmail.com>2015-11-24 12:43:46 +1100
commit16d67f4e8756eefb5eb407df230be0257ea36c6c (patch)
treec60d017af39658442142284892536bfef64c2f58 /guides/source/debugging_rails_applications.md
parent668c006cf33a63ac3f8a8f064c772a339341e70c (diff)
downloadrails-16d67f4e8756eefb5eb407df230be0257ea36c6c.tar.gz
rails-16d67f4e8756eefb5eb407df230be0257ea36c6c.tar.bz2
rails-16d67f4e8756eefb5eb407df230be0257ea36c6c.zip
Remove valgrind note about linux only support
Update the valgrind debugging documentation to remove the notes about being linux only as 3.11.0[1] introduces preliminary support for Mac OSX 10.11 (El Capitan). [1]: http://valgrind.org/docs/manual/dist.news.html
Diffstat (limited to 'guides/source/debugging_rails_applications.md')
-rw-r--r--guides/source/debugging_rails_applications.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/debugging_rails_applications.md b/guides/source/debugging_rails_applications.md
index a05abb61d6..5424313b33 100644
--- a/guides/source/debugging_rails_applications.md
+++ b/guides/source/debugging_rails_applications.md
@@ -862,8 +862,8 @@ such as Valgrind.
### Valgrind
-[Valgrind](http://valgrind.org/) is a Linux-only application for detecting
-C-based memory leaks and race conditions.
+[Valgrind](http://valgrind.org/) is an 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, if a C