diff options
Diffstat (limited to 'src/backend/commands/comment.c')
-rw-r--r-- | src/backend/commands/comment.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/commands/comment.c b/src/backend/commands/comment.c index bff639cf261..4176cf3cfd3 100644 --- a/src/backend/commands/comment.c +++ b/src/backend/commands/comment.c @@ -7,7 +7,7 @@ * Copyright (c) 1996-2001, PostgreSQL Global Development Group * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/comment.c,v 1.61 2002/10/09 16:26:46 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/comment.c,v 1.62 2003/03/10 22:28:18 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -389,7 +389,7 @@ CommentAttribute(List *qualname, char *comment) * * This routine is used to add/drop any user-comments a user might * have regarding the specified database. The routine will check - * security for owner permissions, and, if succesful, will then + * security for owner permissions, and, if successful, will then * attempt to find the oid of the database specified. Once found, * a comment is added/dropped using the CreateComments() routine. */ @@ -427,7 +427,7 @@ CommentDatabase(List *qualname, char *comment) * * This routine is used to add/drop any user-comments a user might * have regarding the specified namespace. The routine will check - * security for owner permissions, and, if succesful, will then + * security for owner permissions, and, if successful, will then * attempt to find the oid of the namespace specified. Once found, * a comment is added/dropped using the CreateComments() routine. */ @@ -579,7 +579,7 @@ CommentRule(List *qualname, char *comment) * have regarding a TYPE. The type is specified by name * and, if found, and the user has appropriate permissions, a * comment will be added/dropped using the CreateComments() routine. - * The type's name and the comments are the paramters to this routine. + * The type's name and the comments are the parameters to this routine. */ static void CommentType(List *typename, char *comment) |