aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2026-04-04 07:08:25 +0000
committerGordon Bergling <gbe@FreeBSD.org>2026-04-04 07:11:11 +0000
commit3957e233dd9cf7b7599dd0a5efc59a78adfa9441 (patch)
tree70ebf15d397ae038ac1b9efb0774163638c8ec3e
parentef3703a8cd9ade13d0c7a685577100e1fc18ee09 (diff)
shlib-compat: Fix two typos in error messages
- s/implemeted/implemented/ MFC after: 3 days
-rwxr-xr-xtools/tools/shlib-compat/shlib-compat.py4
1 files 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):