File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -71,8 +71,7 @@ Tuples provide a way to represent a sequence of values of
7171heterogeneous types. For example, ` tuple(int, real) ` is the type of a
7272pair consisting of an integer and a real number and `tuple(array[ 5]
7373int, vector[ 6] )` is the type of pairs where the first element is a
74- five-element array of integers, the second entry is an integer, and
75- the third is a six-element vector.
74+ five-element array of integers, and the second is a six-element vector.
7675
7776
7877### Tuple syntax {-}
@@ -409,12 +408,9 @@ operations involving multiple indexing and range indexing.
409408
410409Stan expressions are all evaluated before assignment happens, so there
411410is no danger of so-called aliasing in array, vector, or matrix
412- operations. Contrast the behavior of the assignments to ` u ` and
413- ` x ` , which start with the same values.
414-
415- The loop assigning to ` u ` and the compound slicing assigning to ` x ` .
416-
417- the following trivial Stan program.
411+ operations. In the following Stan program, contrast the behavior of
412+ the loop assignment to ` u ` and the compound slicing assignment to ` x ` ,
413+ where ` u ` and ` x ` start with the same values.
418414
419415``` stan
420416transformed data {
You can’t perform that action at this time.
0 commit comments