Skip to content

Commit 68473ae

Browse files
committed
Update index.md
1 parent 6fb2389 commit 68473ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ hermiteh(n, x) # H_n(x)
3838

3939
For expansions, recurrence relationships, and other operations linked with linear equations, it is useful to treat the families of orthogonal
4040
polynomials as _continuum arrays_, as implemented in [ContinuumArrays.jl](https://github.com/JuliaApproximation/ContinuumArrays.jl). The continuum arrays implementation is accessed as follows:
41-
```@repl usergide
41+
```@repl userguide
4242
T = ChebyshevT() # Or just Chebyshev()
4343
axes(T) # [-1,1] by 1:∞
4444
T[x, n+1] # T_n(x) = cos(n*acos(x))
4545
```
4646
We can thereby access many points and indices efficiently using array-like language:
47-
```@repl usergide
47+
```@repl userguide
4848
x = range(-1, 1; length=1000);
4949
T[x, 1:1000] # [T_j(x[k]) for k=1:1000, j=0:999]
5050
```

0 commit comments

Comments
 (0)