Subject: | Order minus a module pod issue |
The following documentation is trying to highlight a difference in how to call use JSON::Any:
You may change the order by specifying it on the use JSON::Any line:
use JSON::Any qw(DWIW XS JSON);
Specifying an order that is missing one of the modules will prevent that module from being used:
use JSON::Any qw(DWIW XS JSON);
The example used is the same. I'm assuming the last example should look something like one of the following:
use JSON::Any qw(XS JSON);
use JSON::Any qw(DWIW JSON);
use JSON::Any qw(DWIW XS);