Here's an interdiff for an error in the original document I didn't
catch until now.

diff --git a/doc/dev-codestyle.rst b/doc/dev-codestyle.rst
index 4a87a27..5c9f8b6 100644
--- a/doc/dev-codestyle.rst
+++ b/doc/dev-codestyle.rst
@@ -469,11 +469,11 @@ Parentheses, point free style
 Prefer the so-called point-free style to extra parentheses::

   -- bad
-  let a = f ( g ( h x) )
+  let a x = f ( g ( h x) )
   -- better
-  let b = f $ g $ h x
+  let b x = f $ g $ h x
   -- best
-  let c = f . g . h $ x
+  let c = f . g . h

I don't know if we should merge this change immediately or make it its
own commit.

--RS

Reply via email to