Skip to content

Commit

Permalink
fix check
Browse files Browse the repository at this point in the history
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
  • Loading branch information
yoshuawuyts committed Oct 14, 2018
1 parent 4a020dc commit 4076ff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ impl<'s, 'i, 'r> Manifest<'s, 'i, 'r> {
#[must_use]
#[inline]
pub fn short_name(mut self, val: &'s str) -> Self {
debug_assert!(val.len() < 12);
debug_assert!(val.len() <= 12);
self.short_name = Some(val);
self
}
Expand Down

0 comments on commit 4076ff2

Please sign in to comment.