diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:21 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:21 +0100 |
commit | 2111c1248b08236a839dcf22036f92735bceb31c (patch) | |
tree | 9313da344b7134a913d1d917162e55b35fe1e74f /stockton-levels/src/types.rs | |
parent | 102e166b040030b590df83888a1d1a47d0130f10 (diff) |
chore(all): style formatting and clippy fixes
Diffstat (limited to 'stockton-levels/src/types.rs')
-rw-r--r-- | stockton-levels/src/types.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stockton-levels/src/types.rs b/stockton-levels/src/types.rs index 7bccd23..6f19b3d 100644 --- a/stockton-levels/src/types.rs +++ b/stockton-levels/src/types.rs @@ -86,8 +86,8 @@ impl RGB { /// An error encountered while parsing. pub enum ParseError { Unsupported, - Invalid + Invalid, } /// Standard result type. -pub type Result<T> = std::result::Result<T, ParseError>;
\ No newline at end of file +pub type Result<T> = std::result::Result<T, ParseError>; |