From fa5af5de1ce0f587adc45dc0fe35b0c9d3654cb7 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Sun, 14 Oct 2012 11:23:51 -0400 Subject: [PATCH] Small change to style guide. --- docs/source/devguide/styleguide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.