Skip to content

Commit 1f86a0f

Browse files
committed
Fix typo in migration guide
1 parent 53e3763 commit 1f86a0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/migration_3_to_4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The major difference between versions `3` and `4` is the support for nested mode
6969
```julia
7070
@model function kalman_filter_step(y, prev_x, new_x, A, B, Q, P)
7171
new_x ~ MvNormal= A * prev_x, Σ = Q)
72-
y ~ MvNormal= B * x, Σ = P)
72+
y ~ MvNormal= B * new_x, Σ = P)
7373
end
7474

7575
@model function state_space_model(y, A, B, Q, P)

0 commit comments

Comments
 (0)