diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-05-05 22:50:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 22:50:23 +0000 |
commit | 81ce93574f62d4b117fdd79af65391f30316a457 (patch) | |
tree | 951a0578860c6028e2dfff0ca83879001c6b2385 /font/src/ft/fc/char_set.rs | |
parent | 04f0bcaf54ed373128ca0f84ee8fcdd8e52bce23 (diff) | |
download | alacritty-81ce93574f62d4b117fdd79af65391f30316a457.tar.gz alacritty-81ce93574f62d4b117fdd79af65391f30316a457.zip |
Extend style guideline documentation
Diffstat (limited to 'font/src/ft/fc/char_set.rs')
-rw-r--r-- | font/src/ft/fc/char_set.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/font/src/ft/fc/char_set.rs b/font/src/ft/fc/char_set.rs index 4bba4818..a60513c2 100644 --- a/font/src/ft/fc/char_set.rs +++ b/font/src/ft/fc/char_set.rs @@ -70,7 +70,7 @@ impl CharSetRef { pub fn merge(&self, other: &CharSetRef) -> Result<bool, ()> { unsafe { - // Value is just an indicator whether something was added or not + // Value is just an indicator whether something was added or not. let mut value: FcBool = 0; let res = FcCharSetMerge(self.as_ptr() as _, other.as_ptr() as _, &mut value); if res == 0 { |