From b80a1cf17845528f70f9a235f468523b61501693 Mon Sep 17 00:00:00 2001 From: Rick Newton-Rogers Date: Tue, 8 Jul 2025 11:27:37 +0100 Subject: [PATCH 1/2] Update Generating-stubs.md --- .../Documentation.docc/Articles/Generating-stubs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/GRPCProtobuf/Documentation.docc/Articles/Generating-stubs.md b/Sources/GRPCProtobuf/Documentation.docc/Articles/Generating-stubs.md index 75edc09..86f47d2 100644 --- a/Sources/GRPCProtobuf/Documentation.docc/Articles/Generating-stubs.md +++ b/Sources/GRPCProtobuf/Documentation.docc/Articles/Generating-stubs.md @@ -61,7 +61,7 @@ You must name the file `grpc-swift-proto-generator-config.json` and structure it "generatedSource": { "accessLevelOnImports": false, "accessLevel": "internal", - } + }, "protoc": { "executablePath": "/opt/homebrew/bin/protoc" "importPaths": [ From a754579e58b7c1fa7d5bccb642497e9e1eedfe2d Mon Sep 17 00:00:00 2001 From: Rick Newton-Rogers Date: Tue, 8 Jul 2025 15:40:50 +0100 Subject: [PATCH 2/2] Update Generating-stubs.md --- .../Documentation.docc/Articles/Generating-stubs.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Sources/GRPCProtobuf/Documentation.docc/Articles/Generating-stubs.md b/Sources/GRPCProtobuf/Documentation.docc/Articles/Generating-stubs.md index 86f47d2..9f1003b 100644 --- a/Sources/GRPCProtobuf/Documentation.docc/Articles/Generating-stubs.md +++ b/Sources/GRPCProtobuf/Documentation.docc/Articles/Generating-stubs.md @@ -56,18 +56,18 @@ You must name the file `grpc-swift-proto-generator-config.json` and structure it "generate": { "clients": true, "servers": true, - "messages": true, + "messages": true }, "generatedSource": { "accessLevelOnImports": false, - "accessLevel": "internal", + "accessLevel": "internal" }, "protoc": { - "executablePath": "/opt/homebrew/bin/protoc" + "executablePath": "/opt/homebrew/bin/protoc", "importPaths": [ - "../directory_1", - ], - }, + "../directory_1" + ] + } } ```