diff --git a/docs/source/devguide/styleguide.rst b/docs/source/devguide/styleguide.rst index 7f837d61cf..ac8b8af7f4 100644 --- a/docs/source/devguide/styleguide.rst +++ b/docs/source/devguide/styleguide.rst @@ -27,7 +27,7 @@ enhance code readability or otherwise. Always include comments to describe what your code is doing. Do not be afraid of using copious amounts of comments. -Use <, >, <=, and >= rather than .lt., .gt., .le., and .ge.. +Use <, >, <=, >=, ==, and /= rather than .lt., .gt., .le., .ge., .eq., and .ne. Try to keep code within 80 columns when possible.