diff options
author | James Henderson <jh7370@my.bristol.ac.uk> | 2019-09-25 13:09:17 +0000 |
---|---|---|
committer | James Henderson <jh7370@my.bristol.ac.uk> | 2019-09-25 13:09:17 +0000 |
commit | 12e30999212123b76acae46bb888b9738e989f9a (patch) | |
tree | 36dd9e56face4a21767cb02e1b92017f2326cac2 /llvm/docs/CommandGuide/llvm-strings.rst | |
parent | 4dd9b2faec5a3759e9911373e9fea64acda4c4e6 (diff) | |
download | llvm-12e30999212123b76acae46bb888b9738e989f9a.zip llvm-12e30999212123b76acae46bb888b9738e989f9a.tar.gz llvm-12e30999212123b76acae46bb888b9738e989f9a.tar.bz2 |
[docs][llvm-strings] Clarify "printable character" wording
The --bytes option uses the phrase "printable ASCII characters", but the
description section used simply "printable characters". To avoid any
confusion about locale impacts etc, this change adopts the former's
phrasing in both places. It also fixes a minor grammar issue in the
description.
Reviewed by: MaskRay
Differential Revision: https://reviews.llvm.org/D68016
llvm-svn: 372865
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-strings.rst')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-strings.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/CommandGuide/llvm-strings.rst b/llvm/docs/CommandGuide/llvm-strings.rst index f738e92..f2d04c4 100644 --- a/llvm/docs/CommandGuide/llvm-strings.rst +++ b/llvm/docs/CommandGuide/llvm-strings.rst @@ -14,8 +14,8 @@ DESCRIPTION :program:`llvm-strings` is a tool intended as a drop-in replacement for GNU's :program:`strings`, which looks for printable strings in files and writes them to the standard output stream. A printable string is any sequence of four (by -default) or more printable characters. The end of the file, or any other byte -terminates the current sequence. +default) or more printable ASCII characters. The end of the file, or any other +byte, terminates the current sequence. :program:`llvm-strings` looks for strings in each ``input`` file specified. Unlike GNU :program:`strings` it looks in the entire input file, regardless of |