From ef39274973103f105f2174f9914777fbd23574a8 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 16 Mar 2019 06:47:18 -0700 Subject: [PATCH] Update readme --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 0092e644..77fe2b4d 100644 --- a/README.rst +++ b/README.rst @@ -253,7 +253,7 @@ printf The good thing about ``printf`` is that it is pretty fast and readily available being a part of the C standard library. The main drawback is that it -doesn't support user-defined types. ``print`` also has safety issues although +doesn't support user-defined types. ``printf`` also has safety issues although they are somewhat mitigated with `__attribute__ ((format (printf, ...)) `_ in GCC. There is a POSIX extension that adds positional arguments required for