diff options
author | Pádraig Brady <P@draigBrady.com> | 2016-12-02 13:10:18 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2016-12-02 13:10:18 +0000 |
commit | 11c1b73c1b386a098e5e18af864591541b63d7bf (patch) | |
tree | 113a06158efb99111e90c6c82a94a20da9c89562 /src | |
parent | fbb337e1c3104d5ca68d92c1abb12e2865e76150 (diff) | |
download | coreutils-11c1b73c1b386a098e5e18af864591541b63d7bf.tar.xz |
doc: fix --help for: od -t f[SIZE]
* src/od.c (usage): SIZE is that of float, not integer.
Diffstat (limited to 'src')
-rw-r--r-- | src/od.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -390,7 +390,7 @@ TYPE is made up of one or more of these specifications:\n\ "), stdout); fputs (_("\ d[SIZE] signed decimal, SIZE bytes per integer\n\ - f[SIZE] floating point, SIZE bytes per integer\n\ + f[SIZE] floating point, SIZE bytes per float\n\ o[SIZE] octal, SIZE bytes per integer\n\ u[SIZE] unsigned decimal, SIZE bytes per integer\n\ x[SIZE] hexadecimal, SIZE bytes per integer\n\ |