git: 3957e233dd9c - main - shlib-compat: Fix two typos in error messages

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sat, 04 Apr 2026 07:11:25 UTC
The branch main has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=3957e233dd9cf7b7599dd0a5efc59a78adfa9441

commit 3957e233dd9cf7b7599dd0a5efc59a78adfa9441
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2026-04-04 07:08:25 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2026-04-04 07:11:11 +0000

    shlib-compat: Fix two typos in error messages
    
    - s/implemeted/implemented/
    
    MFC after:      3 days
---
 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):