From 5f433a50fef21f16c7693f6dbf85d52469927621 Mon Sep 17 00:00:00 2001
From: jdsteve2 <jdsteve2@illinois.edu>
Date: Sun, 4 Mar 2018 03:52:25 -0600
Subject: [PATCH] corrected lid_strides doc

---
 doc/tutorial.rst    | 2 +-
 loopy/statistics.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/tutorial.rst b/doc/tutorial.rst
index 3c8ca28fd..af8c8281c 100644
--- a/doc/tutorial.rst
+++ b/doc/tutorial.rst
@@ -1662,7 +1662,7 @@ Each line of output will look roughly like::
   data type accessed.
 
 - stride: A :class:`dict` of **{** :class:`int` **:**
-  :class:`pymbolic.primitives.Variable` or :class:`int` **}** that specifies
+  :class:`pymbolic.primitives.Expression` or :class:`int` **}** that specifies
   local strides for each local id in the memory access index. Local ids not
   found will not be present in ``lid_strides.keys()``. Uniform access (i.e.
   work-items within a sub-group access the same item) is indicated by setting
diff --git a/loopy/statistics.py b/loopy/statistics.py
index b27888b1d..5e929b618 100755
--- a/loopy/statistics.py
+++ b/loopy/statistics.py
@@ -556,7 +556,7 @@ class MemAccess(Record):
     .. attribute:: lid_strides
 
        A :class:`dict` of **{** :class:`int` **:**
-       :class:`pymbolic.primitives.Variable` or :class:`int` **}** that
+       :class:`pymbolic.primitives.Expression` or :class:`int` **}** that
        specifies local strides for each local id in the memory access index.
        Local ids not found will not be present in ``lid_strides.keys()``.
        Uniform access (i.e. work-items within a sub-group access the same
-- 
GitLab