Skip to content

Commit d196cb2

Browse files
Google APIscopybara-github
authored andcommitted
docs: Minor documentation edits
PiperOrigin-RevId: 719012138
1 parent a0a6048 commit d196cb2

8 files changed

Lines changed: 20 additions & 20 deletions

File tree

google/apps/script/type/calendar/calendar_addon_manifest.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ option java_package = "com.google.apps.script.type.calendar";
2727
option php_namespace = "Google\\Apps\\Script\\Type\\Calendar";
2828
option ruby_package = "Google::Apps::Script::Type::Calendar";
2929

30-
// Manifest section specific to Calendar Add-ons.
30+
// Manifest section specific to Calendar add-ons.
3131

3232
// Calendar add-on manifest.
3333
message CalendarAddOnManifest {

google/apps/script/type/docs/docs_addon_manifest.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ option java_package = "com.google.apps.script.type.docs";
2727
option php_namespace = "Google\\Apps\\Script\\Type\\Docs";
2828
option ruby_package = "Google::Apps::Script::Type::Docs";
2929

30-
// Manifest section specific to Docs Add-ons.
30+
// Manifest section specific to Docs add-ons.
3131

3232
// Docs add-on manifest.
3333
message DocsAddOnManifest {

google/apps/script/type/drive/drive_addon_manifest.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ option java_package = "com.google.apps.script.type.drive";
2626
option php_namespace = "Google\\Apps\\Script\\Type\\Drive";
2727
option ruby_package = "Google::Apps::Script::Type::Drive";
2828

29-
// Manifest section specific to Drive Add-ons.
29+
// Manifest section specific to Drive add-ons.
3030

3131
// Drive add-on manifest.
3232
message DriveAddOnManifest {

google/apps/script/type/script_manifest.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ enum HttpAuthorizationHeader {
9393
// Default value, equivalent to `SYSTEM_ID_TOKEN`
9494
HTTP_AUTHORIZATION_HEADER_UNSPECIFIED = 0;
9595

96-
// Send an ID token for the project-specific Google Workspace Add-ons system
96+
// Send an ID token for the project-specific Google Workspace add-ons system
9797
// service account (default)
9898
SYSTEM_ID_TOKEN = 1;
9999

google/apps/script/type/sheets/sheets_addon_manifest.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ option java_package = "com.google.apps.script.type.sheets";
2727
option php_namespace = "Google\\Apps\\Script\\Type\\Sheets";
2828
option ruby_package = "Google::Apps::Script::Type::Sheets";
2929

30-
// Manifest section specific to Sheets Add-ons.
30+
// Manifest section specific to Sheets add-ons.
3131

3232
// Sheets add-on manifest.
3333
message SheetsAddOnManifest {

google/apps/script/type/slides/slides_addon_manifest.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ option java_package = "com.google.apps.script.type.slides";
2727
option php_namespace = "Google\\Apps\\Script\\Type\\Slides";
2828
option ruby_package = "Google::Apps::Script::Type::Slides";
2929

30-
// Manifest section specific to Slides Add-ons.
30+
// Manifest section specific to Slides add-ons.
3131

3232
// Slides add-on manifest.
3333
message SlidesAddOnManifest {

google/cloud/gsuiteaddons/v1/gsuiteaddons.proto

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,30 +38,30 @@ option java_package = "com.google.cloud.gsuiteaddons.v1";
3838
option php_namespace = "Google\\Cloud\\GSuiteAddOns\\V1";
3939
option ruby_package = "Google::Cloud::GSuiteAddOns::V1";
4040

41-
// A service for managing Google Workspace Add-ons deployments.
41+
// A service for managing Google Workspace add-ons deployments.
4242
//
43-
// A Google Workspace Add-on is a third-party embedded component that can be
43+
// A Google Workspace add-on is a third-party embedded component that can be
4444
// installed in Google Workspace Applications like Gmail, Calendar, Drive, and
45-
// the Google Docs, Sheets, and Slides editors. Google Workspace Add-ons can
45+
// the Google Docs, Sheets, and Slides editors. Google Workspace add-ons can
4646
// display UI cards, receive contextual information from the host application,
4747
// and perform actions in the host application (See:
4848
// https://developers.google.com/gsuite/add-ons/overview for more information).
4949
//
50-
// A Google Workspace Add-on deployment resource specifies metadata about the
50+
// A Google Workspace add-on deployment resource specifies metadata about the
5151
// add-on, including a specification of the entry points in the host application
5252
// that trigger add-on executions (see:
5353
// https://developers.google.com/gsuite/add-ons/concepts/gsuite-manifests).
54-
// Add-on deployments defined via the Google Workspace Add-ons API define their
54+
// Add-on deployments defined via the Google Workspace add-ons API define their
5555
// entrypoints using HTTPS URLs (See:
5656
// https://developers.google.com/gsuite/add-ons/guides/alternate-runtimes),
5757
//
58-
// A Google Workspace Add-on deployment can be installed in developer mode,
58+
// A Google Workspace add-on deployment can be installed in developer mode,
5959
// which allows an add-on developer to test the experience an end-user would see
6060
// when installing and running the add-on in their G Suite applications. When
6161
// running in developer mode, more detailed error messages are exposed in the
6262
// add-on UI to aid in debugging.
6363
//
64-
// A Google Workspace Add-on deployment can be published to Google Workspace
64+
// A Google Workspace add-on deployment can be published to Google Workspace
6565
// Marketplace, which allows other Google Workspace users to discover and
6666
// install the add-on. See:
6767
// https://developers.google.com/gsuite/add-ons/how-tos/publish-add-on-overview
@@ -156,9 +156,9 @@ service GSuiteAddOns {
156156
}
157157
}
158158

159-
// Request message to get Google Workspace Add-ons authorization information.
159+
// Request message to get Google Workspace add-ons authorization information.
160160
message GetAuthorizationRequest {
161-
// Required. Name of the project for which to get the Google Workspace Add-ons
161+
// Required. Name of the project for which to get the Google Workspace add-ons
162162
// authorization information.
163163
//
164164
// Example: `projects/my_project/authorization`.
@@ -337,7 +337,7 @@ message InstallStatus {
337337
google.protobuf.BoolValue installed = 2;
338338
}
339339

340-
// A Google Workspace Add-on deployment
340+
// A Google Workspace add-on deployment
341341
message Deployment {
342342
option (google.api.resource) = {
343343
type: "gsuiteaddons.googleapis.com/Deployment"
@@ -352,7 +352,7 @@ message Deployment {
352352
// user before executing an add-on endpoint.
353353
repeated string oauth_scopes = 2;
354354

355-
// The Google Workspace Add-on configuration.
355+
// The Google Workspace add-on configuration.
356356
AddOns add_ons = 3;
357357

358358
// This value is computed by the server based on the version of the
@@ -361,9 +361,9 @@ message Deployment {
361361
string etag = 5;
362362
}
363363

364-
// A Google Workspace Add-on configuration.
364+
// A Google Workspace add-on configuration.
365365
message AddOns {
366-
// Configuration that is common across all Google Workspace Add-ons.
366+
// Configuration that is common across all Google Workspace add-ons.
367367
google.apps.script.type.CommonAddOnManifest common = 1;
368368

369369
// Gmail add-on configuration.

google/cloud/gsuiteaddons/v1/gsuiteaddons_v1.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
type: google.api.Service
22
config_version: 3
33
name: gsuiteaddons.googleapis.com
4-
title: Google Workspace Add-ons API
4+
title: Google Workspace add-ons API
55

66
apis:
77
- name: google.cloud.gsuiteaddons.v1.GSuiteAddOns

0 commit comments

Comments
 (0)