Skip to content

Commit fa7519f

Browse files
authored
Merge pull request aiken-lang#89 from nemo83/fix/removing-ref-to-removed-PosixTime
Removed references to PosixTime
2 parents 48f0fa6 + c8adc96 commit fa7519f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/aiken/interval.ak

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
///
2323
/// ```aiken
2424
/// // [1; 10]
25-
/// let i0: Interval<PosixTime> = Interval
25+
/// let i0: Interval<Int> = Interval
2626
/// { lower_bound:
2727
/// IntervalBound { bound_type: Finite(1), is_inclusive: True }
2828
/// , upper_bound:
@@ -32,7 +32,7 @@
3232
///
3333
/// ```aiken
3434
/// // (20; infinity)
35-
/// let i1: Interval<PosixTime> = Interval
35+
/// let i1: Interval<Int> = Interval
3636
/// { lower_bound:
3737
/// IntervalBound { bound_type: Finite(20), is_inclusive: False }
3838
/// , upper_bound:

0 commit comments

Comments
 (0)