From cc05276596a783e828425f638b2ef4ea7d973600 Mon Sep 17 00:00:00 2001 From: Adam Jensen Date: Sat, 18 Jul 2020 21:20:09 -0400 Subject: [PATCH] Fix function name typo in quickstart guide --- README-quick-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-quick-start.md b/README-quick-start.md index 2adc04d70..a6f07310d 100644 --- a/README-quick-start.md +++ b/README-quick-start.md @@ -89,7 +89,7 @@ and compile, see what happens. ### How about create array of different type and having different initial values? -The [`from_elm`](http://docs.rs/ndarray/latest/ndarray/struct.ArrayBase.html#method.from_elem) method can be handy here: +The [`from_elem`](http://docs.rs/ndarray/latest/ndarray/struct.ArrayBase.html#method.from_elem) method can be handy here: ```rust use ndarray::{Array, Ix3};