From: Zsolt Dollenstein Date: Sat, 30 Nov 2019 11:16:33 +0000 (+0000) Subject: Fix list literal example in README X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/b7624cedb9a1559500f8644ec6fcb9525426eaa8?hp=5e9244ea0d7541d2fa33277b7d83b58ffc8b3ba0 Fix list literal example in README The literal as written is going to be exploded because of the trailing comma. --- diff --git a/README.md b/README.md index c0c4c91..588e458 100644 --- a/README.md +++ b/README.md @@ -162,7 +162,7 @@ statement per line. If this fits the allotted line length, great. j = [1, 2, - 3, + 3 ] # out: