Skip to content

Commit

Permalink
Grammatical and some spelling errors ##10954
Browse files Browse the repository at this point in the history
Co-authored-by: IanFPFerreira <ianfillipe@gmail.com>
Co-Authored-by: vitordiniz25 <vitordiniz25@gmail.com>
  • Loading branch information
3 people committed Dec 11, 2022
1 parent 07c7f38 commit 85c9eb8
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/docs/action-server/events.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ Logs an action called by the bot. Only the action itself is logged; the events t

**Automatic Tracking**:

* Any action (including custom actions and responses) that is called, even if the action does not execute succesfully.
* Any action (including custom actions and responses) that is called, even if the action does not execute successfully.

This event is not usually returned explicitly by a custom action.

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/action-server/validation-action.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ The method `required_slots` will return the `domain_slots` which is a list of al
##### FormValidationAction.next_requested_slot

The method `next_requested_slot` will set the value of `REQUESTED_SLOT` to the next unset slot only if the
`required_slots` method was overriden by the custom action subclassing `FormValidationAction`.
`required_slots` method was overridden by the custom action subclassing `FormValidationAction`.

If users didn't override `required_slots` then we'll let the `FormAction` within Rasa Open
Source request the next slot, and the method will return `None`.
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/command-line-interface.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ the following arguments:
```text [rasa data split nlu --help]
```

If you have NLG data for retrieval actions, this will be saved to seperate files:
If you have NLG data for retrieval actions, this will be saved to separate files:

```bash
ls train_test_split
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/connectors/hangouts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ to make the new channel endpoint available for Google Hangouts to send messages

### Cards and Interactive Cards

There are two ways in which Hangouts Chat will display bot messages, either as text or card. For each recevied
There are two ways in which Hangouts Chat will display bot messages, either as text or card. For each received
request, your bot will send all messages in one response. If one of those messages is a card (e.g. an image),
all other messages are converted to card format as well.

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/installation/installing-rasa-open-source.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import TabItem from '@theme/TabItem';
import { Button } from '@theme/Button';

:::note Want to explore first?
You can explore Rasa Open Source online using the Rasa Playground even before you install.
At the end of the tutorial you can download the resulting assistant, install Rasa on
You can explore Rasa Open Source online using the Rasa Playground even before you install it.
At the end of the tutorial, you can download the resulting assistant, install Rasa on
your machine and continue development locally.
<a className="button button--outline button button" href={useBaseUrl("/playground")}>Rasa Playground</a>
:::
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/installation/rasa-pro/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ You can increase UDP packet size by running `sudo sysctl -w net.inet.udp.maxdgra
:::


Congratulations! You have now succesfully installed Rasa Plus on your developement environment.
Congratulations! You have now successfully installed Rasa Plus on your development environment.
To learn more about production deployments, visit:
- [Deploying Rasa Plus in production](../../deploy/deploy-rasa)
- [Deploying Rasa Pro Services in production](../../deploy/deploy-rasa-pro-services)
2 changes: 1 addition & 1 deletion docs/docs/language-support.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ what pipeline is best for your use case, check out [choosing a pipeline](./tunin

## Training a Model in Any Languages

The following pipeline can be used to train models in whitespace tokenizable langauges:
The following pipeline can be used to train models in whitespace tokenizable languages:

```yaml-rasa (docs/sources/data/configs_for_docs/default_config.yml)
```
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/messaging-and-voice-channels.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ As of writing this, it is set to 40 connections / minute.

:::

Alternatively you can make your assistent listen on a specific address using the `-i` command line
Alternatively you can make your assistant listen on a specific address using the `-i` command line
option:

```bash
rasa run -p 5005 -i 192.168.69.150
```

This is particulary useful when your internet facing machines connect to backend servers using a VPN
This is particularly useful when your internet facing machines connect to backend servers using a VPN
interface.
2 changes: 1 addition & 1 deletion docs/docs/setting-up-ci-cd.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import useBaseUrl from '@docusaurus/useBaseUrl';

## Overview

Continous Integration (CI) is the practice of merging in code changes
Continuous Integration (CI) is the practice of merging in code changes
frequently and automatically testing changes as they are committed. Continuous
Deployment (CD) means automatically deploying integrated changes to a staging
or production environment. Together, they allow you to make more frequent improvements
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/testing-your-assistant.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ Here are some examples:

```yaml-rasa title="tests/test_stories.yml" {5,9,13}
stories:
- story: A basic test story with mutliple entities for a single token
- story: A basic test story with multiple entities for a single token
steps:
- user: |
hello
Expand Down Expand Up @@ -389,7 +389,7 @@ you can use a list notation in the test files, such as

```yaml
stories:
- story: A basic test story with mutliple entities for a single token
- story: A basic test story with multiple entities for a single token
steps:
- user: |
I like [ice cream][{\"entity\": \"food\"}, {\"entity\": \"desert\"}]
Expand Down

0 comments on commit 85c9eb8

Please sign in to comment.