Skip to content

Commit

Permalink
fix(cli): better explanations for --interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
W95Psp committed Jan 29, 2024
1 parent afa9bd5 commit 4cca7ba
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions cli/options/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,14 @@ pub struct FStarOptions {
#[arg(long, default_value = "1")]
ifuel: u32,
/// Modules for which Hax should extract interfaces (`*.fsti`
/// files). By default we extract no interface. This flag expects
/// a space-separated list of inclusion clauses. An inclusion
/// clause is a Rust path prefixed with `+`, `+!` or `-`. `-`
/// excludes any matched item, `+` includes any matched item, `+!`
/// extracts only an interface and drops its implementation. By
/// default, every item is included. Rust path chunks can be
/// either a concrete string, or a glob (just like bash globs, but
/// with Rust paths).
/// files) in supplement to implementations (`*.fst` files). By
/// default we extract no interface, only implementations. This
/// flag expects a space-separated list of inclusion clauses. An
/// inclusion clause is a Rust path prefixed with `+`, `+!` or
/// `-`. `-` means implementation only, `+!` means interface only
/// and `+` means implementation and interface. Rust path chunks
/// can be either a concrete string, or a glob (just like bash
/// globs, but with Rust paths).
#[arg(
long,
value_parser = parse_inclusion_clause,
Expand Down

0 comments on commit 4cca7ba

Please sign in to comment.