Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Apr 2026 17:33:05 +0000
From:      Gordon Bergling <gbe@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 3b6f570e36ef - stable/14 - shlib-compat: Fix two typos in error messages
Message-ID:  <69de7a51.346db.403a026f@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/14 has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=3b6f570e36efb60e587ce020e67a354c56e8ccf7

commit 3b6f570e36efb60e587ce020e67a354c56e8ccf7
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2026-04-04 07:08:25 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2026-04-14 17:32:59 +0000

    shlib-compat: Fix two typos in error messages
    
    - s/implemeted/implemented/
    
    (cherry picked from commit 3957e233dd9cf7b7599dd0a5efc59a78adfa9441)
---
 tools/tools/shlib-compat/shlib-compat.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/tools/shlib-compat/shlib-compat.py b/tools/tools/shlib-compat/shlib-compat.py
index ba506f6c0c24..2b9b34071372 100755
--- a/tools/tools/shlib-compat/shlib-compat.py
+++ b/tools/tools/shlib-compat/shlib-compat.py
@@ -307,11 +307,11 @@ class Def(object):
         return vals[param]
 
     def _pp_ex(self, pp):
-        raise NotImplementedError('Extended pretty print not implemeted: %s' %
+        raise NotImplementedError('Extended pretty print not implemented: %s' %
                 str(self))
 
     def _pp(self, pp):
-        raise NotImplementedError('Pretty print not implemeted: %s' % str(self))
+        raise NotImplementedError('Pretty print not implemented: %s' % str(self))
 
 class AnonymousDef(Def):
     def __init__(self, id, **kwargs):


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69de7a51.346db.403a026f>