From 75c97405d2e3823d58b83c1492c7f9ecace56b27 Mon Sep 17 00:00:00 2001 From: khanhkhanhlele Date: Sat, 15 Nov 2025 10:25:30 +0700 Subject: [PATCH] Fix typos in some files --- clients/flex/com/adobe/crypto/MD5.as | 2 +- clients/flex/com/adobe/net/URI.as | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clients/flex/com/adobe/crypto/MD5.as b/clients/flex/com/adobe/crypto/MD5.as index ce70ec5deb6..82e4df85201 100644 --- a/clients/flex/com/adobe/crypto/MD5.as +++ b/clients/flex/com/adobe/crypto/MD5.as @@ -184,7 +184,7 @@ package com.adobe.crypto { digest.writeInt(c); digest.writeInt(d); digest.position = 0; - // Finish up by concatening the buffers with their hex output + // Finish up by concatenating the buffers with their hex output return IntUtil.toHex( a ) + IntUtil.toHex( b ) + IntUtil.toHex( c ) + IntUtil.toHex( d ); } diff --git a/clients/flex/com/adobe/net/URI.as b/clients/flex/com/adobe/net/URI.as index b77896b2506..80c95d802a8 100644 --- a/clients/flex/com/adobe/net/URI.as +++ b/clients/flex/com/adobe/net/URI.as @@ -1391,7 +1391,7 @@ package com.adobe.net * did not have any escaping, the first unescape will do nothing * and then the re-escape will properly escape everything. If * the URI was already escaped, the unescape and re-escape will - * essentally be a no-op. This provides a safe way to make sure + * essentially be a no-op. This provides a safe way to make sure * a URI is in the proper escaped form.

*/ public function forceEscape() : void @@ -1794,7 +1794,7 @@ package com.adobe.net else { // Both URI's have the same number of path components, but - // it failed the equivelence check above. This means that + // it failed the equivalence check above. This means that // the two URI's are not related. return URI.NOT_RELATED; }