Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
idocyabra committed Jun 28, 2024
1 parent 913ab9c commit cc68906
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit cc68906

Please sign in to comment.