diff --git a/androscalpel/src/apk.rs b/androscalpel/src/apk.rs index d4cdf02..d8466f8 100644 --- a/androscalpel/src/apk.rs +++ b/androscalpel/src/apk.rs @@ -2925,7 +2925,7 @@ impl Apk { match writer.add_class(class_) { Ok(()) => (), Err(DexWritterError::OutOfSpace(err)) => bail!( - "{name} dex file has to many class/method/field to be serialize in dex format ({err}). You might want to use `Apk::redistribute_classes() before serializing`" + "{name} dex file has too many class/method/field to be serialize in dex format ({err}). You might want to use `Apk::redistribute_classes() before serializing`" ), } }