summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2018-05-30 14:27:34 -0400
committerNicoleYarroch <nicole@livio.io>2018-05-30 14:27:34 -0400
commita363b7e64017819550259b0ec27ce83b1f80a654 (patch)
treefffb53f9a25564e0ed3d68416d5a500ad8b65a6e
parentdbc9d9c163ca7f2a9351c07f7332349f9c7a2887 (diff)
downloadsdl_ios-a363b7e64017819550259b0ec27ce83b1f80a654.tar.gz
Fixed documentation
Signed-off-by: NicoleYarroch <nicole@livio.io>
-rw-r--r--SmartDeviceLink/SDLArtwork.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLArtwork.m b/SmartDeviceLink/SDLArtwork.m
index e5c22c2aa..b57838f34 100644
--- a/SmartDeviceLink/SDLArtwork.m
+++ b/SmartDeviceLink/SDLArtwork.m
@@ -94,7 +94,7 @@ NS_ASSUME_NONNULL_BEGIN
/**
* Creates a string representation of NSData by hashing the data using the MD5 hash function. This string is not guaranteed to be unique as collisions can occur, however collisions are extremely rare.
*
- * HAX: A MD5 hash always creates a string with 32 characters (128-bits). Due to some versions of Core not following the spec, file names that are too long are being rejected. To try to accommodate this setup, hashed file names are being truncated to 16 characters.
+ * HAX: A MD5 hash always creates a string with 32 characters (128-bits). Due to some implementations of Core not following the spec, file names that are too long are being rejected. To try to accommodate this setup, hashed file names are being truncated to 16 characters.
*
* Sourced from https://stackoverflow.com/questions/2018550/how-do-i-create-an-md5-hash-of-a-string-in-cocoa
*