File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -174,10 +174,10 @@ public class ToolsVersionLoader: ToolsVersionLoaderProtocol {
174
174
return ( versionSpecifier, splitted. count == 1 ? [ ] : Array ( splitted [ 1 ] ) )
175
175
}
176
176
177
- /// The regex to match swift tools version specification:
178
- /// * It should start with `//` followed by any amount of _horizontal_ whitespace characters.
179
- /// * Following that it should contain the case insensitive string `swift-tools-version:`.
180
- /// * The text between the above string and `;` or string end becomes the tools version specifier.
177
+ /// The regex to match swift tools version specification
178
+ /// - It should start with `//` followed by any amount of _horizontal_ whitespace characters.
179
+ /// - Following that it should contain the case insensitive string `swift-tools-version:`.
180
+ /// - The text between the above string and `;` or string end becomes the tools version specifier.
181
181
static let regex = try ! NSRegularExpression (
182
182
pattern: " ^// \\ h*?swift-tools-version:(.*?)(?:;.*|$) " ,
183
183
options: [ . caseInsensitive] )
You can’t perform that action at this time.
0 commit comments