From 91672ec5e609c987cbb4318d8d49f4177011cccd Mon Sep 17 00:00:00 2001 From: Albert Meltzer <7529386+kitbellew@users.noreply.github.com> Date: Thu, 28 Mar 2024 09:31:02 -0700 Subject: [PATCH] Docs: use parens, not brackets for `since vX.Y.Z` Do it like everywhere else in the doc. --- docs/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index c8d86699fe..e47460e2c6 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -4705,10 +4705,10 @@ The following parameters affect this behaviour: - `binPack.literalArgumentLists`: if false, this behaviour is disabled, other parameters ignored - `binPack.literalsMinArgCount`: doesn't apply binpacking to calls with fewer arguments - `binPack.literals{Include,Exclude}`: lists of regular expressions which define a literal -- [since v2.5.0] `binPack.literalsIncludeSimpleExpr`: allows a few selects (i.e. `a.b`), +- (since v2.5.0) `binPack.literalsIncludeSimpleExpr`: allows a few selects (i.e. `a.b`), followed by a few nested single-argument apply calls, with literals as arguments - since v3.3.2, also includes `new` -- [since v2.5.0] `binPack.literalsSingleLine`: the entire argument list will be formatted on +- (since v2.5.0) `binPack.literalsSingleLine`: the entire argument list will be formatted on one line, regardless of `maxColumn` ```scala mdoc:defaults