summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorManabu Sugimoto <Manabu.Sugimoto@sony.com>2022-01-05 01:17:40 +0900
committerPaul Moore <paul@paul-moore.com>2022-01-05 17:48:36 -0500
commit307e250bbe11567ca7401a2e28f8920cd3408626 (patch)
treef2c5456fd63082578a89d64694ed04ca91b72d22 /src
parent3bb1f92ee0876f07c19253065c27166aa60e2fb6 (diff)
downloadlibseccomp-307e250bbe11567ca7401a2e28f8920cd3408626.tar.gz
doc,pyx,tests: Fix some typos
Signed-off-by: Manabu Sugimoto <Manabu.Sugimoto@sony.com> Reviewed-by: Tom Hromatka <tom.hromatka@oracle.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'src')
-rw-r--r--src/python/seccomp.pyx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/seccomp.pyx b/src/python/seccomp.pyx
index e2f9f2a..3551aac 100644
--- a/src/python/seccomp.pyx
+++ b/src/python/seccomp.pyx
@@ -623,7 +623,7 @@ cdef class SyscallFilter:
Resets the seccomp filter state to an initial default state, if a
default filter action is not specified in the reset call the
original action will be reused. This function does not affect any
- seccomp filters alread loaded into the kernel.
+ seccomp filters already loaded into the kernel.
"""
if defaction == -1:
defaction = self._defaction
@@ -800,7 +800,7 @@ cdef class SyscallFilter:
In the case where the specific rule is not valid on a specific
architecture, e.g. socket() on 32-bit x86, this method rewrites
- the rule to the best possible match. If you don't want this fule
+ the rule to the best possible match. If you don't want this rule
rewriting to take place use add_rule_exactly().
"""
cdef libseccomp.scmp_arg_cmp c_arg[6]