Merge pull request #2646 from ilee38/fix-typos-tech-reference

fix typos on technical reference documentation
This commit is contained in:
Carol Willing
2019-07-16 16:43:19 -07:00
committed by GitHub
3 changed files with 6 additions and 6 deletions

View File

@@ -102,7 +102,7 @@ route to be proxied, such as `/user/name/`. A routespec will:
### Adding a route
When adding a route, JupyterHub may pass a JSON-serializable dict as a `data`
argument that should be attacked to the proxy route. When that route is
argument that should be attached to the proxy route. When that route is
retrieved, the `data` argument should be returned as well. If your proxy
implementation doesn't support storing data attached to routes, then your
Python wrapper may have to handle storing the `data` piece itself, e.g in a
@@ -204,7 +204,7 @@ setup(
```
If you have added this metadata to your package,
users can select your authenticator with the configuration:
users can select your proxy with the configuration:
```python
c.JupyterHub.proxy_class = 'mything'

View File

@@ -195,7 +195,7 @@ setup(
```
If you have added this metadata to your package,
users can select your authenticator with the configuration:
users can select your spawner with the configuration:
```python
c.JupyterHub.spawner_class = 'myservice'

View File

@@ -76,7 +76,7 @@ resolves the cross-site issues.
### Disable user config
If subdomains are not available or not desirable, JupyterHub provides a a
If subdomains are not available or not desirable, JupyterHub provides a
configuration option `Spawner.disable_user_config`, which can be set to prevent
the user-owned configuration files from being loaded. After implementing this
option, PATHs and package installation and PATHs are the other things that the