Remove unnecessary capitalisation
'context' does not need need a capital letter in the middle of a sentence.
This commit is contained in:
parent
ecb62612b5
commit
269bde042f
|
@ -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.
|
/// A trait for all kinds of contexts that lets you define the exact flags and a function to
|
||||||
/// It shouldn't be possible to implement this for types outside this crate.
|
/// deallocate memory. It shouldn't be possible to implement this for types outside this crate.
|
||||||
pub unsafe trait Context : private::Sealed {
|
pub unsafe trait Context : private::Sealed {
|
||||||
/// Flags for the ffi.
|
/// Flags for the ffi.
|
||||||
const FLAGS: c_uint;
|
const FLAGS: c_uint;
|
||||||
|
|
Loading…
Reference in New Issue