Skip to content

Commit

Permalink
Merge pull request #2319 from tjmahr/patch-1
Browse files Browse the repository at this point in the history
missing semicolon in manual
  • Loading branch information
Bob Carpenter authored Jun 11, 2017
2 parents a3667b8 + 70e5563 commit b5f6457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docs/stan-reference/examples.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1557,7 +1557,7 @@ \subsubsection{Optimization through Vectorization}
{
vector[N] x_beta_jj;
for (n in 1:N)
x_beta_jj[n] = x[n] * beta[jj[n]]
x_beta_jj[n] = x[n] * beta[jj[n]];
y ~ normal(x_beta_jj, sigma);
}
\end{stancode}
Expand Down

0 comments on commit b5f6457

Please sign in to comment.