From: wouter bolsterlee Date: Tue, 22 May 2018 15:54:28 +0000 (+0200) Subject: tweak grammar in docs about fluent interfaces (#247) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/c7bc22388d30f1ba503eefd574e4bb794749b782?ds=sidebyside;pf=etc tweak grammar in docs about fluent interfaces (#247) ...to make the sentence a bit easier to understand. --- diff --git a/README.md b/README.md index af1f847..5b5903b 100644 --- a/README.md +++ b/README.md @@ -380,7 +380,7 @@ decision = (maybe.this() and values > 0) or (maybe.that() and values < 0) Some popular APIs, like ORMs, use call chaining. This API style is known as a [fluent interface](https://en.wikipedia.org/wiki/Fluent_interface). -*Black* formats those treating dots that follow a call or an indexing +*Black* formats those by treating dots that follow a call or an indexing operation like a very low priority delimiter. It's easier to show the behavior than to explain it. Look at the example: ```py3