Update number documentation

Co-authored-by: Eduard-Mihai Burtescu <edy.burt@gmail.com>
This commit is contained in:
BeastLe9enD 2022-06-04 12:14:44 +02:00 committed by Eduard-Mihai Burtescu
parent 7d7f2fe5a6
commit f69d94ed27

View File

@ -1,6 +1,6 @@
//! Traits and helper functions related to numbers.
/// Abstract trait representing a SPIR-V integer type.
/// Abstract trait representing a SPIR-V integer or floating-point type.
pub trait Number: crate::scalar::Scalar {}
impl Number for u8 {}