@@ -8,20 +8,20 @@ let package = Package(
8
8
. macOS( . v10_13) ,
9
9
] ,
10
10
products: [
11
- // introductory example
11
+ // Introductory example.
12
12
. executable( name: " HelloWorld " , targets: [ " HelloWorld " ] ) ,
13
- // good for benchmarking
13
+ // Good for benchmarking.
14
14
. executable( name: " Benchmark " , targets: [ " Benchmark " ] ) ,
15
- // demonstrate different types of error handling
15
+ // Demonstrate different types of error handling.
16
16
. executable( name: " ErrorHandling " , targets: [ " ErrorHandling " ] ) ,
17
- // demostrate how to integrate with AWS API Gateway
17
+ // Demostrate how to integrate with API Gateway.
18
18
. executable( name: " APIGateway " , targets: [ " APIGateway " ] ) ,
19
- // fully featured example with domain specific business logic
19
+ // Fully featured example with domain specific business logic.
20
20
. executable( name: " CurrencyExchange " , targets: [ " CurrencyExchange " ] ) ,
21
21
] ,
22
22
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:
25
25
// .package(url: "https://github.com/stevapple/swift-tencent-scf-runtime.git", from: "1.0.0")
26
26
. package ( name: " swift-tencent-scf-runtime " , path: " ../.. " ) ,
27
27
] ,
0 commit comments