Skip to content

Commit 6c55cbf

Browse files
committed
A few other docs fixes
1 parent 8d64851 commit 6c55cbf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/graph_fluent.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
DataStax Graph Fluent API
22
=========================
33

4-
The fluent API adds graph features to the core driver::
4+
The fluent API adds graph features to the core driver:
55

66
* A TinkerPop GraphTraversalSource builder to execute traversals on a DSE cluster
77
* The ability to execution traversal queries explicitly using execute_graph

docs/query_paging.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ You can resume the pagination when executing a new query by using the :attr:`.Re
8686
results = session.execute(statement)
8787

8888
# save the paging_state somewhere and return current results
89-
session['paging_stage'] = results.paging_state
89+
web_session['paging_stage'] = results.paging_state
9090

9191

9292
# resume the pagination sometime later...
9393
statement = SimpleStatement(query, fetch_size=10)
94-
ps = session['paging_state']
94+
ps = web_session['paging_state']
9595
results = session.execute(statement, paging_state=ps)

0 commit comments

Comments
 (0)