From bcac2288e0abd01a802587d39e78973cf490c8c9 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 13 Feb 2016 02:17:20 -0500 Subject: [PATCH] Update README.rst --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index c53805d..bba097a 100644 --- a/README.rst +++ b/README.rst @@ -40,14 +40,14 @@ Or iterate over them: Values can be accessed many ways: ``row.user_email``, ``row['user_email']``, or ``row[3]``. Fields with non-alphanumeric characters (like spaces) are also fully supported. -Or store them all for later reference: +Or store a copy of your record collection for later reference: .. code:: python >>> rows.all() [, , , ...] -If you'd prefer to have a copy of your record collection, use ``rows.as_dict()`` or ``rows.as_dict(ordered=True)``. +Other options include ``rows.as_dict()`` and ``rows.as_dict(ordered=True)``. ☤ Features ----------