Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
CBroz1 committed Nov 17, 2023
1 parent eb4faf5 commit dd47a1d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/src/misc/database_management.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ temporary `.sql` file and execute it on the database.

### Privileges

DataJoint schemas correspond to MySQL databases. Priveleges are managed by
DataJoint schemas correspond to MySQL databases. Privileges are managed by
schema/database prefix.

- `SELECT` privileges allow users to read, write, and delete data.
Expand All @@ -52,7 +52,7 @@ these prifixes.

### Setting Passwords

New users are generted with the password `temppass`. In order to change this,
New users are generated with the password `temppass`. In order to change this,
we recommend downloading DataJoint `0.14.2` (currently pre-release).

```console
Expand Down
2 changes: 1 addition & 1 deletion notebooks/00_Setup.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@
" docker pull datajoint/mysql:8.0\n",
" ```\n",
"\n",
"_Note_: For demonstation, MySQL version won't matter. Some\n",
"_Note_: For this demo, MySQL version won't matter. Some\n",
" [database management](https://lorenfranklab.github.io/spyglass/latest/misc/database_management/#mysql-version)\n",
" features of Spyglass, however, expect MySQL >= 8.\n",
"\n",
Expand Down
3 changes: 2 additions & 1 deletion notebooks/py_scripts/00_Setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
# docker pull datajoint/mysql:8.0
# ```
#
# _Note_: For demonstation, MySQL version won't matter. Some
# _Note_: For this demo, MySQL version won't matter. Some
# [database management](https://lorenfranklab.github.io/spyglass/latest/misc/database_management/#mysql-version)
# features of Spyglass, however, expect MySQL >= 8.
#
Expand Down Expand Up @@ -244,6 +244,7 @@

# +
import os

import datajoint as dj

if os.path.basename(os.getcwd()) == "notebooks":
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@ exclude = []
line-length = 80

[tool.codespell]
skip = '.git,*.pdf,*.svg,*.ipynb,./docs/site/**'
skip = '.git,*.pdf,*.svg,*.ipynb,./docs/site/**,temp*'
# Nevers - name in Citation
ignore-words-list = 'nevers'

0 comments on commit dd47a1d

Please sign in to comment.