From a408a2f5cc9170544fa4b3661558348cf8d9955d Mon Sep 17 00:00:00 2001 From: Fee Fladder Date: Sat, 14 Jun 2025 12:37:01 +0200 Subject: [PATCH] removed non-serious language from errors --- src/predictor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/predictor.rs b/src/predictor.rs index f897b80..34d6fe5 100644 --- a/src/predictor.rs +++ b/src/predictor.rs @@ -280,7 +280,7 @@ pub(crate) fn unpredict_float( 64 => rev_predict_f64(in_buf, out_buf, predictor_info.samples_per_pixel as _), _ => { return Err(AsyncTiffError::General(format!( - "thou shalt not predict f{bit_depth:?}" + "No predictor support for f{bit_depth:?}" ))) } } @@ -303,7 +303,7 @@ pub(crate) fn unpredict_float( 64 => rev_predict_f64(in_buf, &mut out_row, predictor_info.samples_per_pixel as _), _ => { return Err(AsyncTiffError::General(format!( - "thou shalt not predict f{bit_depth:?}" + "No predictor support for f{bit_depth:?}" ))) } }