Skip to content

Commit 5192b6d

Browse files
Apply suggestions from code review
Co-authored-by: Joshua Lampert <[email protected]>
1 parent 4db2489 commit 5192b6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ installed using Julia on an internet-connected computer.
1010
[**Unitful.jl**](https://github.com/PainterQubits/Unitful.jl) which provide
1111
support for geometries and physical units, respectively.
1212

13-
**MeshIntegrals.jl** can be installed while using Julia by entering `pkg` mode
13+
**MeshIntegrals.jl** can be installed from the Julia REPL by entering `pkg` mode
1414
with the `]` key and `add`ing it by name
1515
```julia-repl
1616
pkg> add MeshIntegrals
@@ -24,7 +24,7 @@ Pkg.add("MeshIntegrals")
2424

2525
## Basic Usage
2626

27-
Usage of **MeshIntegrals** typically also involves using **Meshes** and **Unitful**,
27+
Usage of **MeshIntegrals.jl** typically also involves using **Meshes.jl** and **Unitful.jl**,
2828
so all three packages will be used in this example.
2929

3030
```julia
@@ -40,7 +40,7 @@ curve whose path approximates a sine-wave on the xy-plane.
4040

4141
```julia
4242
N = 361 # number of control points
43-
xs = range(-π, π, length=N) # x will be bounded [-π, π] meters
43+
xs = range(-π, π, length=N) # x will be bounded in [-π, π] meters
4444
curve = Meshes.BezierCurve([Point(x * u"m", sin(x) * u"m", 0.0u"m") for x in xs])
4545
```
4646

0 commit comments

Comments
 (0)