@@ -8,20 +8,20 @@ let package = Package(
88 . macOS( . v10_13) ,
99 ] ,
1010 products: [
11- // introductory example
11+ // Introductory example.
1212 . executable( name: " HelloWorld " , targets: [ " HelloWorld " ] ) ,
13- // good for benchmarking
13+ // Good for benchmarking.
1414 . executable( name: " Benchmark " , targets: [ " Benchmark " ] ) ,
15- // demonstrate different types of error handling
15+ // Demonstrate different types of error handling.
1616 . executable( name: " ErrorHandling " , targets: [ " ErrorHandling " ] ) ,
17- // demostrate how to integrate with AWS API Gateway
17+ // Demostrate how to integrate with API Gateway.
1818 . executable( name: " APIGateway " , targets: [ " APIGateway " ] ) ,
19- // fully featured example with domain specific business logic
19+ // Fully featured example with domain specific business logic.
2020 . executable( name: " CurrencyExchange " , targets: [ " CurrencyExchange " ] ) ,
2121 ] ,
2222 dependencies: [
23- // this is the dependency on the swift-tencent-scf-runtime library
24- // in real-world projects this would say
23+ // This is the dependency on the swift-tencent-scf-runtime library.
24+ // In real-world projects, this would say:
2525 // .package(url: "https://github.com/stevapple/swift-tencent-scf-runtime.git", from: "1.0.0")
2626 . package ( name: " swift-tencent-scf-runtime " , path: " ../.. " ) ,
2727 ] ,
0 commit comments