* we are now creating true RGBA pngs
[rrdtool.git] / doc / rrdthreads.pod
index 7e6a689..00f5e02 100644 (file)
@@ -116,7 +116,7 @@ F<rrd_thread_safe.c> and F<rrd_non_thread_safe.c>
 Do not use C<getopt> or C<getopt_long> in *C<_r> (directly or
 indirectly)
 
-C<getopt> uses global variables and behaves badly in a multithreaded
+C<getopt> uses global variables and behaves badly in a multi-threaded
 application when called concurrently. Instead provide a *_r function
 taking all options as function parameters. You may provide argc and
 **argv arguments for variable length argument lists. See
@@ -128,7 +128,7 @@ Do not use the C<parsetime> function!
 
 It uses lots of global vars. You may use it in functions not designed
 to be thread-safe like functions wrapping the C<_r> version of some
-operation (eg. C<rrd_create>, but not in C<rrd_create_r>)
+operation (e.g., C<rrd_create>, but not in C<rrd_create_r>)
 
 =back