]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
wibble 2
authorNicholas Nethercote <njn@valgrind.org>
Wed, 23 Apr 2003 07:35:56 +0000 (07:35 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Wed, 23 Apr 2003 07:35:56 +0000 (07:35 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1543

FAQ.txt

diff --git a/FAQ.txt b/FAQ.txt
index cb61e196ddfb855a5893729c7049dbfef5d9ef4f..674fb281a09f1fbcd23adbf2540f6ed8899b2696 100644 (file)
--- a/FAQ.txt
+++ b/FAQ.txt
@@ -88,8 +88,9 @@ Q5. I try running "valgrind my_program", but my_program runs normally,
     and Valgrind doesn't emit any output at all.
 
 A5. Is my_program statically linked?  Valgrind doesn't work with
-    statically linked binaries.  It must rely on at least one shared
-    object.  To determine if a my_program is statically linked, run:
+    statically linked binaries.  my_program must rely on at least one 
+    shared object.  To determine if a my_program is statically linked, 
+    run:
 
       ldd my_program
 
@@ -97,7 +98,7 @@ A5. Is my_program statically linked?  Valgrind doesn't work with
 
       not a dynamic executable
 
-    it my_program is statically linked.
+    if my_program is statically linked.
 
 -----------------------------------------------------------------