Advanced Hands-on Rust: Typo executing tests in a script (page 62)

The script in the green box should read

#!/bin/bash
cd (base path)/more_hands/my_library
cargo test --no-default-features
cargo test --no-default-features --features xorshift
cargo test --no-default-features --features pcg

so it’s consistent with the text. Or else feature pcg would be tested 2 times.