Skip to content

Commit ab961b5

Browse files
anishknyjmdobry
authored andcommitted
Update index.js (GoogleCloudPlatform#450)
1 parent 1e99370 commit ab961b5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

functions/datastore/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function getKeyFromRequestData (requestData) {
4444
* Creates and/or updates a record.
4545
*
4646
* @example
47-
* gcloud alpha functions call set --data '{"kind":"Task","key":"sampletask1","value":{"description": "Buy milk"}}'
47+
* gcloud beta functions call set --data '{"kind":"Task","key":"sampletask1","value":{"description": "Buy milk"}}'
4848
*
4949
* @param {object} req Cloud Function request context.
5050
* @param {object} req.body The request body.
@@ -78,7 +78,7 @@ exports.set = function set (req, res) {
7878
* Retrieves a record.
7979
*
8080
* @example
81-
* gcloud alpha functions call get --data '{"kind":"Task","key":"sampletask1"}'
81+
* gcloud beta functions call get --data '{"kind":"Task","key":"sampletask1"}'
8282
*
8383
* @param {object} req Cloud Function request context.
8484
* @param {object} req.body The request body.
@@ -110,7 +110,7 @@ exports.get = function get (req, res) {
110110
* Deletes a record.
111111
*
112112
* @example
113-
* gcloud alpha functions call del --data '{"kind":"Task","key":"sampletask1"}'
113+
* gcloud beta functions call del --data '{"kind":"Task","key":"sampletask1"}'
114114
*
115115
* @param {object} req Cloud Function request context.
116116
* @param {object} req.body The request body.

0 commit comments

Comments
 (0)