From 71abfc5d2cfd5963393b9ca498c843be19e742c6 Mon Sep 17 00:00:00 2001 From: Dave Townsend Date: Tue, 24 Jan 2017 13:43:05 -0700 Subject: [PATCH] Add missing "local" qualifiers for invoke local function examples --- docs/providers/aws/cli-reference/invoke-local.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/providers/aws/cli-reference/invoke-local.md b/docs/providers/aws/cli-reference/invoke-local.md index 253cae873..e0f2efb95 100644 --- a/docs/providers/aws/cli-reference/invoke-local.md +++ b/docs/providers/aws/cli-reference/invoke-local.md @@ -37,11 +37,11 @@ This example will locally invoke your function. ### Local function invocation with data ```bash -serverless invoke --function functionName --data "hello world" +serverless invoke local --function functionName --data "hello world" ``` ```bash -serverless invoke --function functionName --data '{"a":"bar"}' +serverless invoke local --function functionName --data '{"a":"bar"}' ``` ### Local function invocation with data from standard input