summaryrefslogtreecommitdiffstats
path: root/modules-available/sysconfig/inc
diff options
context:
space:
mode:
authorStefan Weil2019-12-14 08:59:39 +0100
committerStefan Weil2019-12-14 09:29:06 +0100
commitab49e774910743701ee8742799c0b5a58ea65d8a (patch)
tree64057cbb86e9b4524444f00dcf0482345ac96a2b /modules-available/sysconfig/inc
parent[statistics] Fix date range queries to match by day, not by second (diff)
downloadslx-admin-ab49e774910743701ee8742799c0b5a58ea65d8a.tar.gz
slx-admin-ab49e774910743701ee8742799c0b5a58ea65d8a.tar.xz
slx-admin-ab49e774910743701ee8742799c0b5a58ea65d8a.zip
Fix some typos (found by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'modules-available/sysconfig/inc')
-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