Skip to content

Commit 8fe68cf

Browse files
Google APIscopybara-github
authored andcommitted
docs: correct BackupSchedule recurrence docs that mentioned specific time of day
chore: fix typo in DeleteBackupScheduleRequest PiperOrigin-RevId: 619912852
1 parent 58017ef commit 8fe68cf

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

google/firestore/admin/v1/firestore_admin.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ message ListBackupSchedulesResponse {
547547

548548
// The request for [FirestoreAdmin.DeleteBackupSchedules][].
549549
message DeleteBackupScheduleRequest {
550-
// Required. The name of backup schedule.
550+
// Required. The name of the backup schedule.
551551
//
552552
// Format
553553
// `projects/{project}/databases/{database}/backupSchedules/{backup_schedule}`
@@ -862,4 +862,4 @@ message RestoreDatabaseRequest {
862862
type: "firestore.googleapis.com/Backup"
863863
}
864864
];
865-
}
865+
}

google/firestore/admin/v1/schedule.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ message BackupSchedule {
6969

7070
// A oneof field to represent when backups will be taken.
7171
oneof recurrence {
72-
// For a schedule that runs daily at a specified time.
72+
// For a schedule that runs daily.
7373
DailyRecurrence daily_recurrence = 7;
7474

75-
// For a schedule that runs weekly on a specific day and time.
75+
// For a schedule that runs weekly on a specific day.
7676
WeeklyRecurrence weekly_recurrence = 8;
7777
}
7878
}
7979

80-
// Represent a recurring schedule that runs at a specific time every day.
80+
// Represents a recurring schedule that runs at a specific time every day.
8181
//
8282
// The time zone is UTC.
8383
message DailyRecurrence {}

0 commit comments

Comments
 (0)