Skip to content
Open
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 DEVELOPMENT_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Since black is installed in virtualenv, when you follow [this instruction](https
/Users/<username>/.pyenv/shims/black
```

However, IDEs such PyChaim (using FileWatcher) will have a hard time invoking `/Users/<username>/.pyenv/shims/black`
However, IDEs such as PyCharm (using FileWatcher) will have a hard time invoking `/Users/<username>/.pyenv/shims/black`
and this will happen:

```
Expand Down Expand Up @@ -185,7 +185,7 @@ conventions are best practices that we have learnt over time.
are raised by Python interpreter and usually signify a bug in your
code. Your method must not explicitly raise these exceptions because
the caller has no way of knowing whether it came from a bug or not.
Custom exceptions convey are must better at conveying the intent and
Custom exceptions convey intent much better and
can be handled appropriately by the caller. In HTTP lingo, custom
exceptions are equivalent to 4xx (user\'s fault) and built-in
exceptions are equivalent to 5xx (Service Fault)
Expand Down