summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatanael Arndt <arndtn@gmail.com>2020-03-12 15:39:51 +0100
committerNatanael Arndt <arndtn@gmail.com>2020-03-17 22:25:22 +0100
commit22790ce42da3c2d0151ac3e7b892c07ecadca4a3 (patch)
tree9082e79ad01e3eedd84b29dc6978bf7d414ac9e6
parent107ffb6467f813980dcccd1f652ccde6b97d8d32 (diff)
downloadrdflib-22790ce42da3c2d0151ac3e7b892c07ecadca4a3.tar.gz
Fix a doc string in the query module
-rw-r--r--rdflib/query.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdflib/query.py b/rdflib/query.py
index 3f14e8c0..d04440fb 100644
--- a/rdflib/query.py
+++ b/rdflib/query.py
@@ -156,7 +156,7 @@ class Result(object):
There is a bit of magic here that makes this appear like different
Python objects, depending on the type of result.
- If the type is "SELECT", iterating will yield lists of QueryRow objects
+ If the type is "SELECT", iterating will yield lists of ResultRow objects
If the type is "ASK", iterating will yield a single bool (or
bool(result) will return the same bool)