I do not want to rely too much on implicit notation. By reading the tutorial so far, I have a feeling that the information and example are quite out of date, and does not reflect current configuration of OpenWrt.
Maybe you do not do programming. When you do, you'll soon see that relying on default behaviors is never a good thing. It is error prone and makes your code unclear, harder to read and maintain.
And what when the system changes that behavior in the future? If you use explicit commands, you will get an error at compile time. But if you rely on some sort of default behaviors, you will think it works until runtime. At that moment, you scratch your head wondering why it does not work, then spend days finding the cause.