Skip to content

Commit

Permalink
Merge pull request #89 from nemo83/fix/removing-ref-to-removed-PosixTime
Browse files Browse the repository at this point in the history
Removed references to PosixTime
  • Loading branch information
KtorZ authored Sep 6, 2024
2 parents 48f0fa6 + c8adc96 commit fa7519f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/aiken/interval.ak
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
///
/// ```aiken
/// // [1; 10]
/// let i0: Interval<PosixTime> = Interval
/// let i0: Interval<Int> = Interval
/// { lower_bound:
/// IntervalBound { bound_type: Finite(1), is_inclusive: True }
/// , upper_bound:
Expand All @@ -32,7 +32,7 @@
///
/// ```aiken
/// // (20; infinity)
/// let i1: Interval<PosixTime> = Interval
/// let i1: Interval<Int> = Interval
/// { lower_bound:
/// IntervalBound { bound_type: Finite(20), is_inclusive: False }
/// , upper_bound:
Expand Down

0 comments on commit fa7519f

Please sign in to comment.