Fix capitalization typo in SharedPtr rustdoc

This commit is contained in:
David Tolnay 2020-12-28 15:04:54 -08:00
parent 91b22332fc
commit 40f4b5630c
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -7,7 +7,7 @@ use core::marker::PhantomData;
use core::mem::MaybeUninit;
use core::ops::Deref;
/// BInding to C++ `std::shared_ptr<T>`.
/// Binding to C++ `std::shared_ptr<T>`.
#[repr(C)]
pub struct SharedPtr<T>
where