fix typos in comments and strings

This commit is contained in:
Brenton Bostick 2022-11-28 09:23:45 -05:00
parent 668ab8b85c
commit f74a594e98
8 changed files with 12 additions and 12 deletions

View file

@ -43,7 +43,7 @@ public class NativeUtils {
String[] parts = path.split("/");
String filename = (parts.length > 1) ? parts[parts.length - 1] : null;
// Split filename to prexif and suffix (extension)
// Split filename to prefix and suffix (extension)
String prefix = "";
String suffix = null;
if (filename != null) {