Skip to content

Commit e02a707

Browse files
committed
spelling: parsable
Signed-off-by: Josh Soref <[email protected]>
1 parent ec7da02 commit e02a707

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/GRPCCore/Documentation.docc/Tutorials/Route-Guide/Route-Guide.tutorial

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@
346346
following code in.
347347

348348
`@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
350350
is the `run()` method. The `@Flag` annotation marks `server` as a flag to the argument
351351
parser so that you can specify `--server` when running the program.
352352

Sources/GRPCCore/Internal/Metadata+GRPC.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ extension Metadata {
9393
let attoseconds = Int64(remainingMilliseconds) * 1_000_000_000_000_000
9494
self = .retryAfter(Duration(secondsComponent: seconds, attosecondsComponent: attoseconds))
9595
} else {
96-
// Negative or not parseable means stop trying.
96+
// Negative or not parsable means stop trying.
9797
// Source: https://github.com/grpc/proposal/blob/0e1807a6e30a1a915c0dcadc873bca92b9fa9720/A6-client-retries.md
9898
self = .stopRetrying
9999
}

0 commit comments

Comments
 (0)