Skip to content

Commit

Permalink
modifierOrder option documentation clarification (#1691)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamtiko authored and nicklockwood committed Jun 18, 2024
1 parent f078b30 commit c1ebccc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -1260,6 +1260,9 @@ Option | Description
+ private convenience init()
```

**NOTE:** If the option value is empty, the following order will be used by default:
`override,private,fileprivate,internal,package,public,open,private(set),fileprivate(set),internal(set),package(set),public(set),open(set),final,dynamic,optional,required,convenience,indirect,isolated,nonisolated,nonisolated(unsafe),lazy,weak,unowned,static,class,borrowing,consuming,mutating,nonmutating,prefix,infix,postfix`

</details>
<br/>

Expand Down
3 changes: 3 additions & 0 deletions Sources/Examples.swift
Original file line number Diff line number Diff line change
Expand Up @@ -937,6 +937,9 @@ private struct Examples {
- convenience private init()
+ private convenience init()
```
**NOTE:** If the option value is empty, the following order will be used by default:
`\(_FormatRules.defaultModifierOrder.flatMap { $0 }.joined(separator: ","))`
"""

let strongifiedSelf = """
Expand Down

0 comments on commit c1ebccc

Please sign in to comment.