summaryrefslogtreecommitdiffstats
path: root/modules-available/sysconfig/inc/ppd.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/sysconfig/inc/ppd.inc.php')
-rw-r--r--modules-available/sysconfig/inc/ppd.inc.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules-available/sysconfig/inc/ppd.inc.php b/modules-available/sysconfig/inc/ppd.inc.php
index 5ccdbd53..9bd5d171 100644
--- a/modules-available/sysconfig/inc/ppd.inc.php
+++ b/modules-available/sysconfig/inc/ppd.inc.php
@@ -134,7 +134,7 @@ class Ppd
'JCLEnd' => '.*',
// TODO: The above three need to be either completely absent, or all three must be defined
/*
- * Resolution and Appearence Control, section 5.9
+ * Resolution and Appearance Control, section 5.9
*/
/*
* Gray Levels and Halftoning, section 5.10
@@ -417,7 +417,7 @@ class Ppd
$valueTranslation = $value;
}
// Key-value-pair parsed, now the fun part
- // Special cases for openening closing certain groups
+ // Special cases for opening closing certain groups
if ($mainKeyword === 'OpenGroup') {
if ($currentBlock !== false) {
$this->error = 'Line ' . $no . ': OpenGroup while other block (type=' . $currentBlock->type
@@ -433,7 +433,7 @@ class Ppd
continue;
} elseif ($mainKeyword === 'OpenSubGroup') {
if ($currentBlock === false || $currentBlock->type !== 'Group') {
- $this->error = 'Line ' . $no . ': OpenSubGroup with no preceeding OpenGroup';
+ $this->error = 'Line ' . $no . ': OpenSubGroup with no preceding OpenGroup';
return;
}
// TODO: Check unique