From 269bde042f9d6bfccb857c6921e71f01a9854f35 Mon Sep 17 00:00:00 2001 From: Tobin Harding Date: Thu, 18 Nov 2021 10:46:59 +1100 Subject: [PATCH] Remove unnecessary capitalisation 'context' does not need need a capital letter in the middle of a sentence. --- src/context.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/context.rs b/src/context.rs index 310da6df1..15a4b20f6 100644 --- a/src/context.rs +++ b/src/context.rs @@ -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;