From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <pmg-devel-bounces@lists.proxmox.com>
Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68])
	by lore.proxmox.com (Postfix) with ESMTPS id CD4471FF15C
	for <inbox@lore.proxmox.com>; Wed,  7 Aug 2024 12:49:37 +0200 (CEST)
Received: from firstgate.proxmox.com (localhost [127.0.0.1])
	by firstgate.proxmox.com (Proxmox) with ESMTP id 08B144B08;
	Wed,  7 Aug 2024 12:49:47 +0200 (CEST)
From: Maximiliano Sandoval <m.sandoval@proxmox.com>
To: pmg-devel@lists.proxmox.com
Date: Wed,  7 Aug 2024 12:49:42 +0200
Message-Id: <20240807104944.245454-1-m.sandoval@proxmox.com>
X-Mailer: git-send-email 2.39.2
MIME-Version: 1.0
X-SPAM-LEVEL: Spam detection results:  0
 AWL 0.117 Adjusted score from AWL reputation of From: address
 BAYES_00                 -1.9 Bayes spam probability is 0 to 1%
 DMARC_MISSING             0.1 Missing DMARC policy
 KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment
 SPF_HELO_NONE           0.001 SPF: HELO does not publish an SPF Record
 SPF_PASS               -0.001 SPF: sender matches SPF record
Subject: [pmg-devel] [PATCH pmg-docs 1/3] fix typos in perl and css files
X-BeenThere: pmg-devel@lists.proxmox.com
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Proxmox Mail Gateway development discussion
 <pmg-devel.lists.proxmox.com>
List-Unsubscribe: <https://lists.proxmox.com/cgi-bin/mailman/options/pmg-devel>, 
 <mailto:pmg-devel-request@lists.proxmox.com?subject=unsubscribe>
List-Archive: <http://lists.proxmox.com/pipermail/pmg-devel/>
List-Post: <mailto:pmg-devel@lists.proxmox.com>
List-Help: <mailto:pmg-devel-request@lists.proxmox.com?subject=help>
List-Subscribe: <https://lists.proxmox.com/cgi-bin/mailman/listinfo/pmg-devel>, 
 <mailto:pmg-devel-request@lists.proxmox.com?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Errors-To: pmg-devel-bounces@lists.proxmox.com
Sender: "pmg-devel" <pmg-devel-bounces@lists.proxmox.com>

Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
---
 asciidoc-pmg.in       | 6 +++---
 asciidoc/pmg-docs.css | 4 ++--
 scan-adoc-refs        | 6 +++---
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/asciidoc-pmg.in b/asciidoc-pmg.in
index 532ea7f..fefca5e 100644
--- a/asciidoc-pmg.in
+++ b/asciidoc-pmg.in
@@ -79,7 +79,7 @@ sub pop_environment {
     die "unable to pop env '$env'" if !defined($last_stack_entry);
 
     my ($last_env, $skip) = @$last_stack_entry;
-    die "environment missmatch (${last_env} != $env)\n" if $last_env ne $env;
+    die "environment mismatch (${last_env} != $env)\n" if $last_env ne $env;
 
     if (!scalar(@$env_stack)) {
 	$env_skip = 0;
@@ -213,7 +213,7 @@ sub prepare_adoc_file {
 	chomp $line;
 	if ($line =~ m/^if(n?)def::(\S+)\[(.*)\]\s*$/) {
 	    my ($not, $env, $text) = ($1, $2, $3);
-	    die "unsuported ifdef usage - implement me" if $text;
+	    die "unsupported ifdef usage - implement me" if $text;
 
 	    my $skip = !exists($attributes->{$env}) ? 1 : 0;
 	    $skip = ($skip ? 0 : 1 ) if $not;
@@ -222,7 +222,7 @@ sub prepare_adoc_file {
 	    next;
 	} elsif ($line =~ m/^endif::(\S+)\[(.*)\]\s*$/) {
 	    my ($env, $text) = ($1, $2);
-	    die "unsuported ifdef usage - implement me" if $text;
+	    die "unsupported ifdef usage - implement me" if $text;
 	    pop_environment($env);
 	    next;
 	}
diff --git a/asciidoc/pmg-docs.css b/asciidoc/pmg-docs.css
index 45e2b11..8d1b8f8 100644
--- a/asciidoc/pmg-docs.css
+++ b/asciidoc/pmg-docs.css
@@ -106,7 +106,7 @@ div.admonitionblock td.icon > img {
         color: var(--pdt-text);
     }
 
-    /* reduce the brigthness of images a bit and make it reversable
+    /* reduce the brightness of images a bit and make it reversable
      * through hovering over them.
      */
     .image > img {
@@ -161,7 +161,7 @@ div.admonitionblock td.icon > img {
         filter: invert(100%) hue-rotate(180deg) brightness(90%);
     }
 
-    /* fixes the black text on unorderd lists */
+    /* fixes the black text on unordered lists */
     ul > li > * {
         color: var(--pdt-text);
     }
diff --git a/scan-adoc-refs b/scan-adoc-refs
index e7767dc..e80b02e 100755
--- a/scan-adoc-refs
+++ b/scan-adoc-refs
@@ -70,7 +70,7 @@ sub pop_environment {
     pop @$env_stack;
     my $res = pop @$env_name_stack;
 
-    die "environment missmatch ($res != $env)\n" if $res ne $env;
+    die "environment mismatch ($res != $env)\n" if $res ne $env;
 }
 
 sub register_include {
@@ -146,12 +146,12 @@ sub scan_adoc_file {
     while (defined (my $line = <$fh>)) {
 	if ($line =~ m/^if(n?)def::(\S+)\[(.*)\]\s*$/) {
 	    my ($not, $env, $text) = ($1, $2, $3);
-	    die "unsuported ifdef usage - implement me" if $text;
+	    die "unsupported ifdef usage - implement me" if $text;
 	    push_environment($env, $not);
 	    next;
 	} elsif ($line =~ m/^endif::(\S+)\[(.*)\]\s*$/) {
 	    my ($env, $text) = ($1, $2);
-	    die "unsuported ifdef usage - implement me" if $text;
+	    die "unsupported ifdef usage - implement me" if $text;
 	    pop_environment($env);
 	    next;
 	} elsif ($line =~ m/^include::(\S+)\[.*\]\s*$/) {
-- 
2.39.2



_______________________________________________
pmg-devel mailing list
pmg-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pmg-devel