From 958ba956a82cb8002345287af77f9b569b855531 Mon Sep 17 00:00:00 2001 From: Michael Rodler Date: Wed, 17 Jan 2024 20:58:04 +0000 Subject: [PATCH] small update --- src/mutators/numbers.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mutators/numbers.rs b/src/mutators/numbers.rs index 84ee400..c933db3 100644 --- a/src/mutators/numbers.rs +++ b/src/mutators/numbers.rs @@ -1,8 +1,8 @@ //! mutation functions for numbers and arrays of numbers. use num_traits::{ - FromPrimitive, Num, PrimInt, WrappingAdd, WrappingMul, WrappingNeg, - WrappingShl, WrappingShr, WrappingSub, + FromPrimitive, Num, PrimInt, WrappingAdd, WrappingMul, WrappingNeg, WrappingShl, WrappingShr, + WrappingSub, }; /// Trait used to summarize needed supertraits for fuzzing primitive numbers