Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix function names in docstrings (#832)
Fixes the function names in two documentation strings that incorrectly refer to another function.
  • Loading branch information
DIJamner authored and ivg committed May 3, 2018
1 parent 3f59d13 commit b9cf186
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/primus_taint/primus_taint_main.ml
Expand Up @@ -145,12 +145,12 @@ module Setup(Machine : Primus.Machine.S) = struct
(module GetIndirect);

def "taint-sanitize-direct" (tuple [a; b] @-> c)
"(taint-get-indirect K X) removes any direct taint of the kind
"(taint-sanitize-direct K X) removes any direct taint of the kind
K that is directly associated with the value X"
(module SanitizeDirect);

def "taint-sanitize-indirect" (tuple [a; b] @-> c)
"(taint-get-indirect K X) removes any direct taint of the kind
"(taint-sanitize-indirect K X) removes any direct taint of the kind
K that is indirectly associated with the value X"
(module SanitizeIndirect);

Expand Down

0 comments on commit b9cf186

Please sign in to comment.