diff options
author | Robert Haas | 2012-04-24 02:43:09 +0000 |
---|---|---|
committer | Robert Haas | 2012-04-24 02:43:09 +0000 |
commit | 5d4b60f2f25bedee257aaf6f2f4ac77028629b87 (patch) | |
tree | f0f7fa40b63a23b10e9d03ea47f97020565a66f6 /contrib/pgcrypto/imath.c | |
parent | 7ab9b2f3b79177e501a1ef90ed004cc68788abaf (diff) |
Lots of doc corrections.
Josh Kupershmidt
Diffstat (limited to 'contrib/pgcrypto/imath.c')
-rw-r--r-- | contrib/pgcrypto/imath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pgcrypto/imath.c b/contrib/pgcrypto/imath.c index de240763229..3286cd9d80a 100644 --- a/contrib/pgcrypto/imath.c +++ b/contrib/pgcrypto/imath.c @@ -647,7 +647,7 @@ mp_int_add(mp_int a, mp_int b, mp_int c) /* Different signs -- subtract magnitudes, preserve sign of greater */ mp_int x, y; - int cmp = s_ucmp(a, b); /* magnitude comparision, sign ignored */ + int cmp = s_ucmp(a, b); /* magnitude comparison, sign ignored */ /* Set x to max(a, b), y to min(a, b) to simplify later code */ if (cmp >= 0) |