Skip to content

Commit

Permalink
Update 4.20.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jaege authored Jun 5, 2020
1 parent 8e13695 commit c5b7b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch4/4.20.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

(e) `++*iter` is not legal. The expression means increasing value of the element, but the value is a `string` and `string` does not have `++` operator.

(f) `iter++->empty()` is legal. The expression means move `iter` to point to the next element and check if that `string` is empty.
(f) `iter++->empty()` is legal. The expression means move `iter` to point to the next element and check if the original `string` is empty.

0 comments on commit c5b7b0d

Please sign in to comment.