aboutsummaryrefslogtreecommitdiff
path: root/llvm/docs/CommandGuide/llvm-strings.rst
AgeCommit message (Collapse)AuthorFilesLines
2019-09-25[docs][llvm-strings] Clarify "printable character" wordingJames Henderson1-2/+2
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
2019-09-16[docs][llvm-strings] Write llvm-strings documentationJames Henderson1-3/+118
Previously we only had a stub document. Reviewed by: MaskRay Differential Revision: https://reviews.llvm.org/D67554 llvm-svn: 371984
2019-08-22Fix some regressions caused by r369553 on old versions of Debian and UbuntuSylvestre Ledru1-1/+1
It was causing some errors like: Encoding error: 'ascii' codec can't decode byte 0xe2 in position 341: ordinal not in range(128) The full traceback has been saved in /tmp/sphinx-err-y2fq4dtb.log, if you want to report the issue to the developers. llvm-svn: 369644
2019-08-21[docs] Convert remaining command guide entries from md to rst.Jordan Rupprecht1-0/+15
Summary: Linking between markdown and rst files is currently not supported very well, e.g. the current llvm-addr2line docs [1] link to "llvm-symbolizer" instead of "llvm-symbolizer.html". This is weirdly broken in different ways depending on which versions of sphinx and recommonmark are being used, so workaround the bug by using rst everywhere. [1] http://llvm.org/docs/CommandGuide/llvm-addr2line.html Reviewers: jhenderson Reviewed By: jhenderson Subscribers: lebedev.ri, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D66305 llvm-svn: 369553