]> granicus.if.org Git - postgresql/commitdiff
Fix typos pointed out by Noah Misch.
authorRobert Haas <rhaas@postgresql.org>
Wed, 8 Feb 2012 02:40:36 +0000 (21:40 -0500)
committerRobert Haas <rhaas@postgresql.org>
Wed, 8 Feb 2012 02:40:49 +0000 (21:40 -0500)
src/backend/utils/adt/numeric.c

index 6885349de58ed56497ec76f8ccc52d4a6ad0dd1e..cee6cab954c7c8addc8081412f114eeecd5b796b 100644 (file)
@@ -748,9 +748,9 @@ numeric_transform(PG_FUNCTION_ARGS)
 
                /*
                 * If new_typmod < VARHDRSZ, the destination is unconstrained; that's
-                * always OK.  If old_typmod >= VARHDRSZ, the source is constained.
+                * always OK.  If old_typmod >= VARHDRSZ, the source is constrained.
                 * and we're OK if the scale is unchanged and the precison is not
-                * decreasing.  See further nodes in function header comment.
+                * decreasing.  See further notes in function header comment.
                 */
                if (new_typmod < VARHDRSZ || (old_typmod >= VARHDRSZ &&
                         new_scale == old_scale && new_precision >= old_precision))