Merge pull request #433 from Hywan/patch-1

doc(types) Fix a typo in `PySlice`
This commit is contained in:
Yuji Kanagawa 2019-04-14 13:09:29 +09:00 committed by GitHub
commit 85489ebd8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ use std::os::raw::c_long;
/// Represents a Python `slice`.
///
/// Only `c_long` indeces supprted at the moment by `PySlice` object.
/// Only `c_long` indices supported at the moment by `PySlice` object.
#[repr(transparent)]
pub struct PySlice(PyObject);