From 209a0cafd88c9561e4e12ce4f885b9ffc9874baa Mon Sep 17 00:00:00 2001 From: Adam Reichold Date: Fri, 17 Dec 2021 19:03:11 +0100 Subject: [PATCH] Fix typo in IntoPyArray docs. --- src/convert.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/convert.rs b/src/convert.rs index dd6825a0b..d545579da 100644 --- a/src/convert.rs +++ b/src/convert.rs @@ -10,7 +10,7 @@ use crate::{ DataType, Element, PyArray, }; -/// Covnersion trait from some rust types to `PyArray`. +/// Conversion trait from some rust types to `PyArray`. /// /// This trait takes `self`, which means **it holds a pointer to Rust heap, until `resize` or other /// destructive method is called**.