Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@latest
with:
version: '1'
version: '1.11' # Pinned due to Julia 1.12 compatibility issues in upstream packages
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
Expand Down
2 changes: 1 addition & 1 deletion docs/src/lectures/lecture1.md
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ end

![mass-spring-damper](../img/System2.png)

Solving the system gives a plot of the 2 solved uknowns.
Solving the system gives a plot of the 2 solved unknowns.

```@example l1
prob = ODEProblem(sys, [], (0, 10))
Expand Down
Loading