Skip to content
Closed
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
4 changes: 2 additions & 2 deletions docs/src/tutorials/prob-interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ end
nothing # hide
```

We generate some data using `μ = 0` and `σ = 1`:
We generate some data using `μ = 0`:

```@example probinterface
Random.seed!(1776)
Expand All @@ -35,7 +35,7 @@ Conditioning takes a variable and fixes its value as known.
We do this by passing a model and a collection of conditioned variables to [`|`](@ref) or its alias [`condition`](@ref):

```@example probinterface
model = gdemo(length(dataset)) | (x=dataset, μ=0, σ=1)
model = gdemo(length(dataset)) | (x=dataset, μ=0)
nothing # hide
```

Expand Down