error in the reference page for the case statement

There is an error in the reference page for the case statement.
http://www.arduino.cc/en/Reference/SwitchCase

It says:

“break - without break, the switch statement will continue checking through the case statements for any other possible matches. If one is found, it will run that as well”

It should say:

"break - without break, the switch statement will continue executing the next expression until a break or the end of the case statement”

"break - without break, the switch statement will continue executing the next expression until a break or the end of the switch statement”

And I agree :slight_smile:

OK - fixed. Let us know if that doesn't get it.

paulb