Undo the awful Leak Error type-abuse.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3754 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/include/pub_tool_errormgr.h b/include/pub_tool_errormgr.h
index 7cc3893..5ed2f04 100644
--- a/include/pub_tool_errormgr.h
+++ b/include/pub_tool_errormgr.h
@@ -78,9 +78,9 @@
 /* Similar to VG_(maybe_record_error)(), except this one doesn't record the
    error -- useful for errors that can only happen once.  The errors can be
    suppressed, though.  Return value is True if it was suppressed.
-   `print_error' dictates whether to print the error, which is a bit of a
+   'print_error' dictates whether to print the error, which is a bit of a
    hack that's useful sometimes if you just want to know if the error would
-   be suppressed without possibly printing it.  `count_error' dictates
+   be suppressed without possibly printing it.  'count_error' dictates
    whether to add the error in the error total count (another mild hack). */
 extern Bool VG_(unique_error) ( ThreadId tid, ErrorKind ekind,
                                 Addr a, Char* s, void* extra,