File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Documentation.docc/Tutorials/Route-Guide Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 346
346
following code in.
347
347
348
348
`@main` indicates that the type contains the entry point to the program. In this case,
349
- because `RouteGuide` conforms to `AsyncParseableCommand `, the entry point to our program
349
+ because `RouteGuide` conforms to `AsyncParsableCommand `, the entry point to our program
350
350
is the `run()` method. The `@Flag` annotation marks `server` as a flag to the argument
351
351
parser so that you can specify `--server` when running the program.
352
352
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ extension Metadata {
93
93
let attoseconds = Int64 ( remainingMilliseconds) * 1_000_000_000_000_000
94
94
self = . retryAfter( Duration ( secondsComponent: seconds, attosecondsComponent: attoseconds) )
95
95
} else {
96
- // Negative or not parseable means stop trying.
96
+ // Negative or not parsable means stop trying.
97
97
// Source: https://github.com/grpc/proposal/blob/0e1807a6e30a1a915c0dcadc873bca92b9fa9720/A6-client-retries.md
98
98
self = . stopRetrying
99
99
}
You can’t perform that action at this time.
0 commit comments