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 docs/src/developer/extending.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Extending the package

As discussed in the section on [Model construction](@ref), every Structural Equation Model (`Sem`) consists of four parts:
As discussed in the section on [Model Construction](@ref), every Structural Equation Model (`Sem`) consists of four parts:

![SEM concept typed](../assets/concept_typed.svg)

Expand Down
6 changes: 3 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ This strategy also applies to gradients, where you may supply analytic gradients
### Installation
You must have [julia](https://julialang.org/downloads/) installed (and we strongly recommend using an IDE of your choice; we like VS Code with the Julia extension).

To install the latest version of our package from GitHub, use the following commands:
To install the latest version of our package, use the following commands:

```julia
using Pkg
Pkg.add(url = "https://github.com/StructuralEquationModels/StructuralEquationModels.jl")
julia> ]
pkg> add StructuralEquationModels
```

## Citing the package
Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorials/concept.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Here is an overview on the available building blocks:
| | | [`SemConstant`](@ref) | |

The rest of this page explains the building blocks for each part. First, we explain every part and give an overview on the different options that are available. After that, the [API - model parts](@ref) section serves as a reference for detailed explanations about the different options.
(How to stick them together to a final model is explained in the section on [Model construction](@ref).)
(How to stick them together to a final model is explained in the section on [Model Construction](@ref).)

## The observed part aka [`SemObserved`](@ref)

Expand Down