Skip to content

docs: Fix a few typos #515

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,15 +151,15 @@ Rendered documentation will be available under: <http://localhost:9812/>
- Avoid mocking of external libraries; Mocking allowed only in tests.
- Avoid complex structures, for complex classes/methods/functions try to separate to
little objects, to simplify code reuse and testing.
- Avoid code duplications, try to exctract duplicate code to function. (Code
- Avoid code duplications, try to extract duplicate code to function. (Code
duplication in tests is allowed.)
- Write docstrings for new classes and methods.
- Write tests and make sure they pass.
- Add yourself to [AUTHORS.md] :)

### Code style guide

- Docstrings are using RST format. Developer encouraged to include any signigicant
- Docstrings are using RST format. Developer encouraged to include any significant
information to docstrings.
- Developers are encouraged to include typing information in functions signatures.
- Developers should avoid including typing information to docstrings, if possible.
Expand Down
4 changes: 2 additions & 2 deletions docs/forms.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ allowing `None` values, i.e. {attr}`null=True`, then, when nothing selected in
dropdown, the field will be created with `None` value.

```{important}
It is responsobility of developer, to correctly setup database field definition and
It is responsibility of developer, to correctly setup database field definition and
make proper tests before own application release. BooleanField can create unexpected
application behavior in if checks. Developer, should recheck all if checks like:

Expand Down Expand Up @@ -447,7 +447,7 @@ any form+database behaviour.

#### DictField with default empty dict value

Will place `{}` to form for existing/new fields. This value is hardcodded in parent
Will place `{}` to form for existing/new fields. This value is hardcoded in parent
MongoEngine project.

```python
Expand Down