* gettext-tools/doc/gettext.texi (Plural forms): Fix positional argument
syntax in the C example. Reported by Jonathan Leffler in:
http://lists.gnu.org/archive/html/bug-gettext/2016-03/msg00002.html
comes last:
@smallexample
-printf (ngettext ("%$2d file removed from directory %$1s",
- "%$2d files removed from directory %$1s",
+printf (ngettext ("%2$d file removed from directory %1$s",
+ "%2$d files removed from directory %1$s",
n),
dir, n);
@end smallexample