From 7092bd43622cb18e230dd61b12ef6666d0d626f9 Mon Sep 17 00:00:00 2001 From: Joshua Miller Date: Thu, 28 Jan 2016 21:13:39 -0600 Subject: [PATCH] remove duplicate word in docstring --- src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 8ecd0b34..e7a07ca4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -33,7 +33,7 @@ //! The method `clone_ref()` (from trait `PyClone`) can be used to create additional //! references to the same Python object. //! -//! Because all Python objects potentially have multiple owners, the concept +//! Because all Python objects potentially have multiple owners, the //! concept of Rust mutability does not apply to Python objects. //! As a result, this API will allow mutating Python objects even if they are not stored //! in a mutable Rust variable. @@ -291,4 +291,3 @@ pub unsafe fn py_module_initializer_impl( } }) } -