From: Robert Haas Date: Fri, 19 Apr 2013 13:32:49 +0000 (-0400) Subject: Fix typo in comment. X-Git-Tag: REL9_3_BETA1~85 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4580a4bd2c858acf85c578609b8373d730a04534;p=postgresql Fix typo in comment. Fabrízio de Royes Mello --- diff --git a/contrib/hstore/crc32.c b/contrib/hstore/crc32.c index d541d0cc95..c82fc66472 100644 --- a/contrib/hstore/crc32.c +++ b/contrib/hstore/crc32.c @@ -13,7 +13,7 @@ * This code implements the AUTODIN II polynomial * The variable corresponding to the macro argument "crc" should * be an unsigned long. - * Oroginal code by Spencer Garrett + * Original code by Spencer Garrett */ #define _CRC32_(crc, ch) (crc = (crc >> 8) ^ crc32tab[(crc ^ (ch)) & 0xff])