Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: use parens, not brackets for since vX.Y.Z #3873

Merged
merged 1 commit into from
Mar 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading