Fix POD errors
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 19 Nov 2016 20:22:35 +0000 (20:22 +0000)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 19 Nov 2016 20:22:35 +0000 (20:22 +0000)
lib/Linux/Seccomp.pm

index 11833bab1527909ae3f2a391174a08608fd82d6c..d1c2034e8be420116cf8bb175e17dfd884c49b0c 100644 (file)
@@ -588,7 +588,7 @@ Most methods die on error.
 
 =over
 
-=item I<$ctx> = Linux::Seccomp->B<new>(I<$def_action>>)
+=item I<$ctx> = Linux::Seccomp->B<new>(I<$def_action>)
 
 Creates a new C<Linux::Seccomp> filter, with the default action for
 unhandled syscalls being I<$def_action>. Possible values for
@@ -650,43 +650,57 @@ we are comparing. I<$op> is as follows:
 =over
 
 =item SCMP_CMP_NE
+
 =item '!='
+
 =item 'ne'
 
 Matches when the argument value is not equal to I<$datum_a>.
 
 =item SCMP_CMP_LT
+
 =item '<'
+
 =item 'lt'
 
 Matches when the argument value is less than I<$datum_a>.
 
 =item SCMP_CMP_LE
+
 =item '<='
+
 =item 'le'
 
 Matches when the argument value is less than or equal to I<$datum_a>.
 
 =item SCMP_CMP_EQ
+
 =item '=='
+
 =item 'eq'
 
 Matches when the argument value is equal to I<$datum_a>.
 
 =item SCMP_CMP_GE
+
 =item '>='
+
 =item 'ge'
 
 Matches when the argument value is greater than or equal to I<$datum_a>.
 
 =item SCMP_CMP_GT
+
 =item '>'
+
 =item 'gt'
 
 Matches when the argument value is greater than I<$datum_a>.
 
 =item SCMP_CMP_MASKED_EQ
+
 =item '=~'
+
 =item 'me'
 
 Matches when the argument value masked with I<$datum_a> is equal to I<$datum_b> masked with I<$datum_a>.
@@ -705,12 +719,12 @@ See L<seccomp_arch_add(3)>.
 
 Returns true if the given architecture is in the filter, false
 otherwise.
-See L<seccomp_arch_add(3).
+See L<seccomp_arch_add(3)>.
 
 =item I<$ctx>->B<arch_remove>(I<$arch_token>)
 
 Removes an architecture from the filter.
-See L<seccomp_arch_add(3).
+See L<seccomp_arch_add(3)>.
 
 =item I<$ctx>->B<attr_get>(I<$attr>)
 
This page took 0.01241 seconds and 4 git commands to generate.