Skip to content

Commit

Permalink
docs: fix typos inside docs/concepts directory (#6082)
Browse files Browse the repository at this point in the history
  • Loading branch information
parikshitadhikari authored Oct 14, 2023
1 parent 496041e commit 8e11f3d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/concepts/client/third-party-clients.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ The response you receive includes `data` (an array of [Documents](https://docarr

```{admonition} See also: Flow REST API
:class: seealso
For a more detailed descripton of the REST API of a generic Flow, including the complete request body schema and request samples, please check:
For a more detailed description of the REST API of a generic Flow, including the complete request body schema and request samples, please check:
1. [OpenAPI Schema](https://api.jina.ai/rest/latest.json)
2. [Redoc UI](https://api.jina.ai/rest/)
Expand Down
4 changes: 2 additions & 2 deletions docs/concepts/jcloud/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ If you installed the JCloud CLI individually, all of its commands fall under the
In case the command `jc` is already occupied by another tool, use `jcloud` instead. If your pip install doesn't register bash commands for you, you can run `python -m jcloud -h`.
````

For the rest of this section, we use `jc` or `jcloud`. But again they are interchangable with `jina cloud`.
For the rest of this section, we use `jc` or `jcloud`. But again they are interchangeable with `jina cloud`.

## Flows

Expand Down Expand Up @@ -83,7 +83,7 @@ jcloud:
docarray: docarray-version
```
The `jina` and `docarray` corresponds to your development enviornment's `jina` and `docarray` versions.
The `jina` and `docarray` corresponds to your development environment's `jina` and `docarray` versions.
````

````{tip}
Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/serving/executor/hot-reload.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ with dep:
dep.block()
```

We can see that the Executor is successfuly serving:
We can see that the Executor is successfully serving:

```python
from jina import Client
Expand Down
4 changes: 2 additions & 2 deletions docs/concepts/serving/gateway/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ class MyGateway(Gateway):
self.server = Server(Config(app, host=self.host, port=self.port))
```

```{admonition} Nonte
```{admonition} Note
:class: note
Jina provides the Gateway with a list of ports and protocols to expose. Therefore, a custom Gateway can handle requests
Expand Down Expand Up @@ -478,7 +478,7 @@ You may want to dockerize your custom Gateway so you can isolate its dependencie
or Kubernetes.

This assumes that you've already implemented a custom Gateway class and have defined a `config.yml` for it.
In this case, dockerizing the Gateway is straighforward:
In this case, dockerizing the Gateway is straightforward:
* If you need dependencies other than Jina, make sure to add a `requirements.txt` file (for instance, you use a server library).
* Create a `Dockerfile` as follows:
1. Use a [Jina based image](https://hub.docker.com/r/jinaai/jina) with the `standard` tag as the base image in your Dockerfile.
Expand Down
4 changes: 2 additions & 2 deletions docs/concepts/serving/gateway/customize-http-endpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ To enable this endpoint, all you need to do is set `expose_graphql_endpoint=True
```python
from jina import Flow
f = Flow().config_gateway(protocol='http', expose_graphql_endpont=True)
f = Flow().config_gateway(protocol='http', expose_graphql_endpoint=True)
```
````

Expand All @@ -160,7 +160,7 @@ with:
````{admonition} See Also
:class: seealso
For more details about the Jina GraphQL enpoint, see {ref}`here <flow-graphql>`.
For more details about the Jina GraphQL endpoint, see {ref}`here <flow-graphql>`.
````


Expand Down

0 comments on commit 8e11f3d

Please sign in to comment.