Skip to content

Commit

Permalink
Merge pull request #398 from timgates42/bugfix_typos
Browse files Browse the repository at this point in the history
docs: Fix a few typos
  • Loading branch information
pudo committed Dec 27, 2022
2 parents be81e8f + 976c25a commit b99e4f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dataset/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ def distinct(self, *args, **_filter):
def __iter__(self):
"""Return all rows of the table as simple dictionaries.
Allows for iterating over all rows in the table without explicetly
Allows for iterating over all rows in the table without explicitly
calling :py:meth:`find() <dataset.Table.find>`.
::
Expand Down
2 changes: 1 addition & 1 deletion docs/queries.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Queries using raw SQL

To run more complex queries with JOINs, or to perform GROUP BY-style
aggregation, you can also use :py:meth:`db.query() <dataset.Database.query>`
to run raw SQL queries instead. This also supports paramterisation to avoid
to run raw SQL queries instead. This also supports parameterisation to avoid
SQL injections.

Finally, you should consider falling back to SQLAlchemy_ core to construct
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ considered out of scope for the project, include:
* Support for Python 2.x

There's also some functionality that might be cool to support in the future, but
that requires signficant engineering:
that requires significant engineering:

* Async operations
* Database-native ``UPSERT`` semantics

0 comments on commit b99e4f9

Please sign in to comment.