From 57266386291424a14d68266e56cb9d80a638d210 Mon Sep 17 00:00:00 2001 From: Zev Eisenberg Date: Fri, 15 Dec 2023 16:52:19 -0500 Subject: [PATCH] Add missing parentheses. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1de71df..9ebe8dc 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ func testExpressibleByStringLiteral() { Pair("1", V(major: 1)), fPair("1.0", V(major: 1)), // Only this test will run. Pair("1.0.0", V(major: 1)), - ] + ]) } ``` @@ -65,7 +65,7 @@ func testExpressibleByStringLiteral() { Pair("1", V(major: 1)), xPair("1.0", V(major: 1)), // These last two tests will be ignored. xPair("1.0.0", V(major: 1)), - ] + ]) } ```