Skip to content

Commit

Permalink
Small typos in the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
raeglan authored and sungolivia committed Jul 9, 2018
1 parent f92df49 commit 7286c66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/en/Request-Processing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ incoming requests. You can create request handlers by following the
- ``canHandle`` is called by the SDK to determine if the given handler
is capable of processing the incoming request. This function accepts
``HandlerInput`` object and returns **true** if
the handler can handle the request, or **false** if not. You can
the handler can handle the request, or **false** otherwise. You can
choose the conditions on which to base this determination, including
the type or parameters of the incoming request, or skill attributes.
- ``handle`` is called by the SDK when invoking the request handler.
Expand Down Expand Up @@ -102,7 +102,7 @@ well as the optional ``Response`` produced by the ``RequestHandler``.
process(handlerInput: HandlerInput, response?: Response): Promise<void> | void;
}
The following example shows a response intercetpor that handles saving
The following example shows a response interceptor that handles saving
persistent attributes to database before the response is sent to Alexa.

.. code:: javascript
Expand Down Expand Up @@ -212,7 +212,7 @@ exposes various entities useful in request processing, including:
- **ServiceClientFactory**: Constructs service clients capable of
calling Alexa APIs.
- **ResponseBuilder**: Contains helper function to build responses.
- **Context**: Provides an optional, context object passed in by the
- **Context**: Provides an optional context object passed in by the
host container. For example, for skills running on AWS Lambda, this
is the `context
object <https://docs.aws.amazon.com/lambda/latest/dg/nodejs-prog-model-context.html>`__
Expand Down

0 comments on commit 7286c66

Please sign in to comment.