Spellcheck (#302)

* spelling, take1

* some spelling fixes

* one more
This commit is contained in:
Chayim 2022-07-11 11:03:16 +03:00 committed by GitHub
parent b4c20b2f8f
commit bc2199f2d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 109 additions and 8 deletions

View file

@ -17,7 +17,7 @@ python --version
Python 3.7.0
```
If you don't have Python installed, you can download it from [Python.org](https://www.python.org/downloads/), use [Pyenv](https://github.com/pyenv/pyenv), or install Python with your operating system's package manager.
If you don't have Python installed, you can download it from [Python.org](https://www.python.org/downloads/), use [pyenv](https://github.com/pyenv/pyenv), or install Python with your operating system's package manager.
## Redis
@ -71,7 +71,7 @@ Otherwise, you can start the server manually:
$ redis-server start
### macOS with Homebrew
### MacOS with Homebrew
$ brew services start redis
@ -427,7 +427,7 @@ type(andrew.join_date)
# > datetime.date # The model parsed the string automatically!
```
This ability to combine parsing (in this case, a YYYY-MM-DD date string) with validation can save you a lot of work.
This ability to combine parsing (in this case, a date string) with validation can save you a lot of work.
However, you can turn off coercion -- check the next section on using strict validation.
@ -697,7 +697,7 @@ Customer.find(Customer.last_name == "Brookins").all()
# Find all customers that do NOT have the last name "Brookins"
Customer.find(Customer.last_name != "Brookins").all()
# Find all customers whose last name is "Brookins" OR whose age is
# Find all customers whose last name is "Brookins" OR whose age is
# 100 AND whose last name is "Smith"
Customer.find((Customer.last_name == "Brookins") | (
Customer.age == 100