Skip to content

Commit d16994f

Browse files
author
Ace Nassri
authored
s/errors/Error Reporting/ (GoogleCloudPlatform#678)
1 parent 1453f75 commit d16994f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

functions/helloworld/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ exports.helloGCSGeneric = (event, callback) => {
128128
* @param {function} callback The callback function.
129129
*/
130130
exports.helloError = (event, callback) => {
131-
// This WILL be reported to Stackdriver errors
131+
// This WILL be reported to Stackdriver Error Reporting
132132
throw new Error('I failed you');
133133
};
134134
// [END functions_helloworld_error]
@@ -142,7 +142,7 @@ exports.helloError = (event, callback) => {
142142
* @param {function} callback The callback function.
143143
*/
144144
exports.helloError2 = (event, callback) => {
145-
// This will NOT be reported to Stackdriver errors
145+
// This will NOT be reported to Stackdriver Error Reporting
146146
throw 1;
147147
};
148148
// [END functions_helloworld_error_2]

0 commit comments

Comments
 (0)