One of the cheat sheets for learning C has wrong information...i think

https://www.codecademy.com/learn/paths/c/tracks/c-control-flow-sp/modules/conditionals-c-sp/cheatsheet
at the bottom at Operators and Conditionals

“A conditional in C can use relational operators such as &&, ||, and ! to compare values and test multiple expressions.”

but relational operators are < > = etc
logical operators are &&, ||, !

right?