Skip to content

Commit b773671

Browse files
authored
fixed typos in README
1 parent a19254f commit b773671

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ plot([id(u), grid(u)], sol; Plotter = PythonPlot)
6161
## Running examples from documentation
6262

6363
In the [documentation](https://wias-pdelib.github.io/ExtendableFEM.jl/stable/index.html) many more examples can be found.
64-
Each of the examples is implemented as a module that needs to be included first. Afterwards the main file of the module
64+
Each of these examples is implemented as a module that needs to be included first. Afterwards the main file of the module
6565
can be run.
66-
Usually the main function has a Plotter argument that can be used to toggle a plot the solution with the (already installed) backend of your
67-
choice (e.g. `Plotter=PythonPlot`, `GLMakie`, `Plots` or others supported by [GridVisualize.jl](https://github.com/WIAS-PDELib/GridVisualize.jl)).
68-
Some examples need several further dependencies. To ensure an environment we everything is installed, one can use the test
66+
Usually the main function has a Plotter argument that can be used to toggle a plot of the solution with an
67+
(already installed) backend of your choice (e.g. `Plotter=PythonPlot`, `GLMakie`, `Plots` or others supported by [GridVisualize.jl](https://github.com/WIAS-PDELib/GridVisualize.jl)).
68+
Some examples need several further dependencies. To ensure an environment were every dependency is installed, one can use the test
6969
environment via the package [TestEnv](https://github.com/JuliaTesting/TestEnv.jl). The following script runs Example201:
7070
```julia
7171
# activate test environment
@@ -78,7 +78,7 @@ include("examples/Example201_PoissonProblem.jl")
7878
# run example with default arguments
7979
Example201_PoissonProblem.main()
8080

81-
# use with Plotting backend (added manually to the environment)
81+
# run with Plotting backend (added manually to the environment)
8282
using PythonPlot
8383
Example201_PoissonProblem.main(; Plotter = PythonPlot)
8484
```

0 commit comments

Comments
 (0)