From 976c25ad14cf2bc96361ff81e2367ad098f5cc2d Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 17 Jul 2022 12:21:02 +1000 Subject: [PATCH] docs: Fix a few typos There are small typos in: - dataset/table.py - docs/queries.rst - docs/quickstart.rst Fixes: - Should read `significant` rather than `signficant`. - Should read `parameterisation` rather than `paramterisation`. - Should read `explicitly` rather than `explicetly`. Signed-off-by: Tim Gates --- dataset/table.py | 2 +- docs/queries.rst | 2 +- docs/quickstart.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dataset/table.py b/dataset/table.py index 75e05b4..08b806b 100644 --- a/dataset/table.py +++ b/dataset/table.py @@ -717,7 +717,7 @@ class Table(object): 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() `. :: diff --git a/docs/queries.rst b/docs/queries.rst index 2d25e93..9ba1c2f 100644 --- a/docs/queries.rst +++ b/docs/queries.rst @@ -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() ` -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 diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 0f24986..994d53c 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -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