Skip to content

Commit

Permalink
Adjust PulseTaintConfig.Kind module's signature
Browse files Browse the repository at this point in the history
Summary: To make `t` abstract and better reflect `kinds_of_strings_opt`'s name by type signature.

Reviewed By: skcho

Differential Revision: D45816386

fbshipit-source-id: bfde1e4f865a220ef3dc254d06955fef3b362dbb
  • Loading branch information
geralt-encore authored and facebook-github-bot committed May 12, 2023
1 parent eca4a31 commit 8baad3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infer/src/pulse/PulseTaintConfig.mli
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ open! IStd
module F = Format

module Kind : sig
type t = string [@@deriving compare, equal]
type t [@@deriving compare, equal]

val pp : F.formatter -> t -> unit

Expand All @@ -21,7 +21,7 @@ module Kind : sig

val simple_kind : t

val kinds_of_strings_opt : t list option -> t list
val kinds_of_strings_opt : string list option -> t list
end

module Target : sig
Expand Down

0 comments on commit 8baad3c

Please sign in to comment.