Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clients/flex/com/adobe/crypto/MD5.as
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
}

Expand Down
4 changes: 2 additions & 2 deletions clients/flex/com/adobe/net/URI.as
Original file line number Diff line number Diff line change
Expand Up @@ -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.</p>
*/
public function forceEscape() : void
Expand Down Expand Up @@ -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;
}
Expand Down