summaryrefslogtreecommitdiffhomepage
path: root/misc/examples
diff options
context:
space:
mode:
Diffstat (limited to 'misc/examples')
-rw-r--r--misc/examples/multidim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/examples/multidim.c b/misc/examples/multidim.c
index 3bc1feec..d0ddf839 100644
--- a/misc/examples/multidim.c
+++ b/misc/examples/multidim.c
@@ -30,7 +30,7 @@ int main()
}
puts("ss3 = ms3[:, 1:3, 1:3]");
ispan3 ss3 = ms3;
- cspan_slice(&ss3, {0}, {1,3}, {1,3});
+ cspan_slice(&ss3, {0,-1}, {1,3}, {1,3});
for (int i=0; i != ss3.dim[0]; i++) {
for (int j=0; j != ss3.dim[1]; j++) {