Remove unnecessary capitalisation

'context' does not need need a capital letter in the middle of a
sentence.
This commit is contained in:
Tobin Harding 2021-11-18 10:46:59 +11:00
parent ecb62612b5
commit 269bde042f
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 2 additions and 2 deletions

View File

@ -60,8 +60,8 @@ pub mod global {
}
/// A trait for all kinds of Context's that lets you define the exact flags and a function to deallocate memory.
/// It shouldn't be possible to implement this for types outside this crate.
/// A trait for all kinds of contexts that lets you define the exact flags and a function to
/// deallocate memory. It shouldn't be possible to implement this for types outside this crate.
pub unsafe trait Context : private::Sealed {
/// Flags for the ffi.
const FLAGS: c_uint;