Skip to content

Commit 878fb8b

Browse files
committed
fix 2 typos in README
1 parent 15f3431 commit 878fb8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
![PyPI](https://img.shields.io/pypi/v/simple-query-builder?color=yellow&style=flat-square)
88
![PyPI - Downloads](https://img.shields.io/pypi/dm/simple-query-builder?color=darkgreen&style=flat-square)
99

10-
This is a small easy-to-use module for working with a database. It provides some public methods to compose SQL queries and manipulate data. Each SQL query is prepared and safe. QueryBuilder fetches data to _list_ by default. At present time the component supports SQLite (file or memory).
10+
This is a small easy-to-use module for working with a database. It provides some public methods to compose SQL queries and manipulate data. Each SQL query is prepared and safe. QueryBuilder fetches data to _dictionary_ by default. At present time the component supports SQLite (file or memory).
1111

1212
## Contributing
1313

@@ -37,7 +37,7 @@ pip install https://github.com/co0lc0der/simple-query-builder-python/archive/mai
3737
- `get_count()` returns result's rows count
3838
- `get_error()` returns `True` if an error is had
3939
- `get_error_message()` returns an error message if an error is had
40-
- `set_error(message)` sets `_error` to `True` and `_error_essage`
40+
- `set_error(message)` sets `_error` to `True` and `_error_message`
4141
- `get_first()` returns the first item of results
4242
- `get_last()` returns the last item of results
4343
- `reset()` resets state to default values

0 commit comments

Comments
 (0)