mirror of
https://github.com/postgres/postgres.git
synced 2025-12-04 12:02:48 +03:00
Spelling fixes in code comments
Author: Euler Taveira <euler@timbira.com.br>
This commit is contained in:
@@ -377,7 +377,7 @@ logicalrep_read_typ(StringInfo in, LogicalRepTyp *ltyp)
|
||||
{
|
||||
ltyp->remoteid = pq_getmsgint(in, 4);
|
||||
|
||||
/* Read tupe name from stream */
|
||||
/* Read type name from stream */
|
||||
ltyp->nspname = pstrdup(logicalrep_read_namespace(in));
|
||||
ltyp->typname = pstrdup(pq_getmsgstring(in));
|
||||
}
|
||||
@@ -459,7 +459,7 @@ logicalrep_read_tuple(StringInfo in, LogicalRepTupleData *tuple)
|
||||
int i;
|
||||
int natts;
|
||||
|
||||
/* Get of attributes. */
|
||||
/* Get number of attributes */
|
||||
natts = pq_getmsgint(in, 2);
|
||||
|
||||
memset(tuple->changed, 0, sizeof(tuple->changed));
|
||||
|
||||
Reference in New Issue
Block a user