From dda734392fc7b4ac725177a3beaea0077206c58e Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Fri, 27 Jul 2012 00:36:12 -0400 Subject: [PATCH] Minor fix to scan usage example. --- doc/source/array.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/array.rst b/doc/source/array.rst index 087b583b..8546747e 100644 --- a/doc/source/array.rst +++ b/doc/source/array.rst @@ -733,7 +733,7 @@ greater than 300:: knl(a, out) a_host = a.get() - out_host = a[a > 300] + out_host = a_host[a_host > 300] assert (out_host == out.get()[:len(out_host)]).all() -- GitLab