diff --git a/README.md b/README.md index fa82efb..5116db7 100644 --- a/README.md +++ b/README.md @@ -5,5 +5,4 @@ Many answers are extracts from solutions provided to user questions in the [Julia Discourse](https://discourse.julialang.org). The only thing to look here is the -[Documentation](https://m3g.github.io/JuliaNotes.jl/stable/) - +[Documentation](https://m3g.github.io/JuliaNotes.jl/stable/). diff --git a/docs/src/figures.md b/docs/src/figures.md index 8aed793..425c51d 100644 --- a/docs/src/figures.md +++ b/docs/src/figures.md @@ -56,7 +56,7 @@ Which will produce this figure: ``` -To control the margins, because sometimes depending on the font and figure sizes the labels might be cut, set margins (as in the example), which to be set practially need the explicit import of `Plots.Measures`, and perhaps play a little with the size (`size` parameter) of the figure. For example: +To control the margins, because sometimes depending on the font and figure sizes the labels might be cut, set margins (as in the example), which to be set practically need the explicit import of `Plots.Measures`, and perhaps play a little with the size (`size` parameter) of the figure. For example: ```julia using Plots, Plots.Measures, LaTeXStrings diff --git a/docs/src/modules.md b/docs/src/modules.md index 4e7b6d8..823b0d0 100644 --- a/docs/src/modules.md +++ b/docs/src/modules.md @@ -1,7 +1,7 @@ # Modules and Revise -The most practical way to develop codes in Julia, particularly when the code becomes more complex, is the write `modules` and use the `Revise` package. +The most practical way to develop code in Julia, particularly when the code becomes more complex, is to write `modules` and use the `Revise` package. To install the `Revise` package, do: ```julia