Basically, if you don't know what it's talking about, you aren't likely to disobey anyway.
It's talking about configuring your shell environment, and says that you should not put "." (shorthand for the directory you are currently in) in your PATH environment variable.
The basic reason is this: Normally, when you type "top" at the command line, it will go through your PATH and find /usr/bin/top. If you have "." in your PATH, and there is some program named "top" in the directory you're in, it will execute that program instead of /usr/bin/top, even though the latter is probably what you meant. This means that if some malicious program with the same name as a standard program is in the current directory, you run the risk of accidentally running it if "." is in your PATH.