Skip to content

Commit 886b589

Browse files
authored
Update README.md
1 parent a258372 commit 886b589

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ Through the combination of variables, conditionals, and operators, more complex
168168
## Iteration
169169

170170
In imperative languages, iteration is a process whereby blocks of code can be repeated.
171-
In the code below, we set a counter, test it's value, and if it's less than 5, we run the conditional block.
171+
In the code below, we set a counter, test its value, and if it's less than 5, we run the conditional block.
172172
At the end of the block we increment the counter. This will result in the code being run 5 times.
173173

174174
```
@@ -641,7 +641,7 @@ Matlab is storing the 4 strings in a cell array (i.e. an array of individual cel
641641
c(1,1)
642642
c{1,1}
643643
c{2,1}([1 6 4 end-2 13])
644-
c{2,1}([1 6 4 end-2 13]) % this will fail!
644+
c(2,1)([1 6 4 end-2 13]) % this will fail!
645645
```
646646

647647
Cells can also be used to store a mixture of text and numeric values:

0 commit comments

Comments
 (0)