Mitch Garnaat

Fixing some typos.

...@@ -11,7 +11,7 @@ You have to: ...@@ -11,7 +11,7 @@ You have to:
11 * Create the IAM roles required by the Lambda function itself (the executing 11 * Create the IAM roles required by the Lambda function itself (the executing
12 role) as well as the policy required by whoever is invoking the Lambda 12 role) as well as the policy required by whoever is invoking the Lambda
13 function (the invocation role) 13 function (the invocation role)
14 -* Compress the function and any dependencies and upload it to AWS Lambda 14 +* Zip the function and any dependencies and upload it to AWS Lambda
15 * Test the function with mock data 15 * Test the function with mock data
16 * Retrieve the output of the function from CloudWatch Logs 16 * Retrieve the output of the function from CloudWatch Logs
17 * Add an event source to the function 17 * Add an event source to the function
...@@ -25,11 +25,11 @@ to the uploaded function and finds the related CloudWatch log stream and ...@@ -25,11 +25,11 @@ to the uploaded function and finds the related CloudWatch log stream and
25 displays the log events. Finally, it will add the event source to turn 25 displays the log events. Finally, it will add the event source to turn
26 your function on. 26 your function on.
27 27
28 -Kappa is a command line tool. The basic command is: 28 +Kappa is a command line tool. The basic command format is:
29 29
30 kappa --config <path to config file> <command> 30 kappa --config <path to config file> <command>
31 31
32 -Where commands is one of: 32 +Where ``command`` is one of:
33 33
34 * deploy - deploy the CloudFormation template containing the IAM roles and zip the function and upload it to AWS Lambda 34 * deploy - deploy the CloudFormation template containing the IAM roles and zip the function and upload it to AWS Lambda
35 * test - send test data to the new Lambda function 35 * test - send test data to the new Lambda function
...@@ -43,7 +43,7 @@ about your Lambda function. ...@@ -43,7 +43,7 @@ about your Lambda function.
43 An example project based on a Kinesis stream can be found in 43 An example project based on a Kinesis stream can be found in
44 [samples/kinesis](https://github.com/garnaat/kappa/tree/develop/samples/kinesis). 44 [samples/kinesis](https://github.com/garnaat/kappa/tree/develop/samples/kinesis).
45 45
46 -The basic workflow would be to: 46 +The basic workflow is:
47 47
48 * Create your Lambda function 48 * Create your Lambda function
49 * Create your CloudFormation template with the execution and invocation roles 49 * Create your CloudFormation template with the execution and invocation roles
......