Skip to content

Commit f4ee52b

Browse files
committed
swift format
1 parent 3d3c303 commit f4ee52b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Sources/Router/OpenAPILambdaRouterTrie.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,7 @@ struct URIPath: URIPathCollection {
9191
/// - OpenAPILambdaRouterError.noRouteForPath when there is no handler in the graph for the given combination of HTTP method and path
9292
/// - OpenAPILambdaRouterError.noRouteForMethod when there is no handler for that HTTP method
9393
/// - OpenAPILambdaRouterError.noHandlerForPath when there is no handler as leaf node of the tree. This is a programming error and should not happen
94-
func find(method: HTTPRequest.Method, path: String) throws -> (OpenAPIHandler, OpenAPILambdaRequestParameters)
95-
{
94+
func find(method: HTTPRequest.Method, path: String) throws -> (OpenAPIHandler, OpenAPILambdaRequestParameters) {
9695
var parameters: OpenAPILambdaRequestParameters = [:]
9796
let root: Node = root()
9897

0 commit comments

Comments
 (0)