Merge pull request #37 from millerjs/master

remove duplicate word in docstring
This commit is contained in:
Daniel Grunwald 2016-01-29 19:25:35 +01:00
commit 8c398a66cf
1 changed files with 1 additions and 2 deletions

View File

@ -33,7 +33,7 @@
//! The method `clone_ref()` (from trait `PyClone`) can be used to create additional //! The method `clone_ref()` (from trait `PyClone`) can be used to create additional
//! references to the same Python object. //! 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. //! 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 //! As a result, this API will allow mutating Python objects even if they are not stored
//! in a mutable Rust variable. //! in a mutable Rust variable.
@ -291,4 +291,3 @@ pub unsafe fn py_module_initializer_impl(
} }
}) })
} }