aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Name.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-02-21 03:54:31 +0100
committerJay Berkenbilt <ejb@ql.org>2009-02-21 03:54:31 +0100
commit91cb7c0a585ccaf8eab389da9f7351534440ee56 (patch)
tree17acbf824a026228382ec1236e311199024a02b9 /libqpdf/QPDF_Name.cc
parent0b2288c19d514e18449feb8f43fc1350a10241a1 (diff)
downloadqpdf-91cb7c0a585ccaf8eab389da9f7351534440ee56.tar.zst
fix many typos in comments and strings
git-svn-id: svn+q:///qpdf/trunk@651 71b93d88-0707-0410-a8cf-f5a4172ac649
Diffstat (limited to 'libqpdf/QPDF_Name.cc')
-rw-r--r--libqpdf/QPDF_Name.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libqpdf/QPDF_Name.cc b/libqpdf/QPDF_Name.cc
index 2dac795f..c640fe83 100644
--- a/libqpdf/QPDF_Name.cc
+++ b/libqpdf/QPDF_Name.cc
@@ -22,7 +22,7 @@ QPDF_Name::normalizeName(std::string const& name)
for (unsigned int i = 1; i < name.length(); ++i)
{
char ch = name[i];
- // Don't use locale/ctype here; follow PDF spec guidlines.
+ // Don't use locale/ctype here; follow PDF spec guidelines.
if (strchr("#()<>[]{}/%", ch) || (ch < 33) || (ch > 126))
{
sprintf(num, "#%02x", (unsigned char) ch);