Skip to content

Commit 1dd772b

Browse files
authored
fix docs (#166)
1 parent d0c0100 commit 1dd772b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

docs/src/index.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The [`±`](@ref) operator may be typed as `\pm<TAB>` (using Julia's LaTeX syntax
6161

6262
### Set operations
6363

64-
```@repl
64+
```@repl more
6565
1.75 ∈ 1.5±1 # \in<TAB>; can also use `in`
6666
0 ∈ 1.5±1
6767
1 ∈ OpenInterval(0..1)
@@ -78,3 +78,8 @@ isleftopen(2..3)
7878

7979
To import the [`..`](@ref) operator, use `import IntervalSets: (..)`.
8080
The parantheses are necessary to avoid parsing issues.
81+
82+
```@repl
83+
import IntervalSets: (..)
84+
import IntervalSets.(..) # This is also okay
85+
```

0 commit comments

Comments
 (0)