From b7a137348ae3742d5889ba0819f8766f98b821ef Mon Sep 17 00:00:00 2001 From: Shawn Anderson Date: Fri, 25 Sep 2020 03:49:05 -0700 Subject: [PATCH] Fix typo in the quick move example. The example results in the following output for me: input: |[foo, bar()] (press ( at |) output: foo, bar()][ I think you meant: input: (|)[foo, bar()] (press ( at |) output: ([foo, bar()]|) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d079ba..28d99cd 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Features input: (|){["foo"]} (press at |) output: ({["foo"]}|) - input: |[foo, bar()] (press ( at |) + input: (|)[foo, bar()] (press ( at |) output: ([foo, bar()]|) * Quick jump to closed pair.