Skip to content

Commit b565ccf

Browse files
authored
removed non-serious language from errors (#105)
1 parent 6fe3da9 commit b565ccf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/predictor.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ pub(crate) fn unpredict_float(
280280
64 => rev_predict_f64(in_buf, out_buf, predictor_info.samples_per_pixel as _),
281281
_ => {
282282
return Err(AsyncTiffError::General(format!(
283-
"thou shalt not predict f{bit_depth:?}"
283+
"No predictor support for f{bit_depth:?}"
284284
)))
285285
}
286286
}
@@ -303,7 +303,7 @@ pub(crate) fn unpredict_float(
303303
64 => rev_predict_f64(in_buf, &mut out_row, predictor_info.samples_per_pixel as _),
304304
_ => {
305305
return Err(AsyncTiffError::General(format!(
306-
"thou shalt not predict f{bit_depth:?}"
306+
"No predictor support for f{bit_depth:?}"
307307
)))
308308
}
309309
}

0 commit comments

Comments
 (0)