summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorMichael Paquier2019-07-22 01:01:50 +0000
committerMichael Paquier2019-07-22 01:01:50 +0000
commit23bccc823d434d9dcf3c12622fe260d9235baae2 (patch)
treea966eef34e7f33cf1ce9c729d3f423a5b5b9389d /src/common
parente1a0f6a983068675813074847e1d0d61bd37ac0e (diff)
Fix inconsistencies and typos in the tree
This is numbered take 7, and addresses a set of issues with code comments, variable names and unreferenced variables. Author: Alexander Lakhin Discussion: https://postgr.es/m/dff75442-2468-f74f-568c-6006e141062f@gmail.com
Diffstat (limited to 'src/common')
-rw-r--r--src/common/md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/md5.c b/src/common/md5.c
index 24b96eb3149..55eaeed8286 100644
--- a/src/common/md5.c
+++ b/src/common/md5.c
@@ -277,7 +277,7 @@ bytesToHex(uint8 b[16], char *s)
*
* OUTPUT hexsum the MD5 sum as a '\0'-terminated string of
* hexadecimal digits. an MD5 sum is 16 bytes long.
- * each byte is represented by two heaxadecimal
+ * each byte is represented by two hexadecimal
* characters. you thus need to provide an array
* of 33 characters, including the trailing '\0'.
*