aboutsummaryrefslogtreecommitdiffstats
path: root/lib/erl_interface/src/legacy
diff options
context:
space:
mode:
authorAndrew Dryga <[email protected]>2017-02-12 19:37:38 +0200
committerAndrew Dryga <[email protected]>2017-02-14 11:31:31 +0200
commitc648b8f367bd63ecd50f9c4ea25d50d00dc4e68f (patch)
tree60b4d6e46e722dd5eccde13102d42cae46c23ccf /lib/erl_interface/src/legacy
parentd15285f55fe3982798f81027e5aa81fdfbeb2a82 (diff)
downloadotp-c648b8f367bd63ecd50f9c4ea25d50d00dc4e68f.tar.gz
otp-c648b8f367bd63ecd50f9c4ea25d50d00dc4e68f.tar.bz2
otp-c648b8f367bd63ecd50f9c4ea25d50d00dc4e68f.zip
Fixed typos in lib/erl_interface
Diffstat (limited to 'lib/erl_interface/src/legacy')
-rw-r--r--lib/erl_interface/src/legacy/erl_marshal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/erl_interface/src/legacy/erl_marshal.c b/lib/erl_interface/src/legacy/erl_marshal.c
index 2bdf5f2134..527ae0ef8f 100644
--- a/lib/erl_interface/src/legacy/erl_marshal.c
+++ b/lib/erl_interface/src/legacy/erl_marshal.c
@@ -1626,7 +1626,7 @@ static int cmp_refs(unsigned char **e1, unsigned char **e2)
if (cre1 != cre2)
return cre1 < cre2 ? -1 : 1;
- /* ... and then finaly ids. */
+ /* ... and then finally ids. */
if (n1 != n2) {
unsigned char zero[] = {0, 0, 0, 0};
if (n1 > n2)
@@ -1791,7 +1791,7 @@ static int cmp_exe2(unsigned char **e1, unsigned char **e2)
if (port1.creation < port2.creation) return -1;
else if (port1.creation > port2.creation) return 1;
- /* ... and then finaly ids. */
+ /* ... and then finally ids. */
if (port1.id < port2.id) return -1;
else if (port1.id > port2.id) return 1;