Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 708b96d

Browse files
committed
Fix some spelling errors in the documentation
Author: Daniel Gustafsson <daniel@yesql.se>
1 parent 61abff1 commit 708b96d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/src/sgml/libpq.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8444,7 +8444,7 @@ main(int argc, char **argv)
84448444
exit_nicely(conn);
84458445
}
84468446

8447-
/* Set always-secure search path, so malicous users can't take control. */
8447+
/* Set always-secure search path, so malicious users can't take control. */
84488448
res = PQexec(conn,
84498449
"SELECT pg_catalog.set_config('search_path', '', false)");
84508450
if (PQresultStatus(res) != PGRES_TUPLES_OK)
@@ -8614,7 +8614,7 @@ main(int argc, char **argv)
86148614
exit_nicely(conn);
86158615
}
86168616

8617-
/* Set always-secure search path, so malicous users can't take control. */
8617+
/* Set always-secure search path, so malicious users can't take control. */
86188618
res = PQexec(conn,
86198619
"SELECT pg_catalog.set_config('search_path', '', false)");
86208620
if (PQresultStatus(res) != PGRES_TUPLES_OK)
@@ -8841,7 +8841,7 @@ main(int argc, char **argv)
88418841
exit_nicely(conn);
88428842
}
88438843

8844-
/* Set always-secure search path, so malicous users can't take control. */
8844+
/* Set always-secure search path, so malicious users can't take control. */
88458845
res = PQexec(conn, "SET search_path = testlibpq3");
88468846
if (PQresultStatus(res) != PGRES_COMMAND_OK)
88478847
{

doc/src/sgml/lobj.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,7 @@ main(int argc, char **argv)
933933
exit_nicely(conn);
934934
}
935935

936-
/* Set always-secure search path, so malicous users can't take control. */
936+
/* Set always-secure search path, so malicious users can't take control. */
937937
res = PQexec(conn,
938938
"SELECT pg_catalog.set_config('search_path', '', false)");
939939
if (PQresultStatus(res) != PGRES_TUPLES_OK)

doc/src/sgml/logical-replication.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@
377377
some care must be taken when truncating groups of tables connected by
378378
foreign keys. When replicating a truncate action, the subscriber will
379379
truncate the same group of tables that was truncated on the publisher,
380-
either explictly specified or implicitly collected via
380+
either explicitly specified or implicitly collected via
381381
<literal>CASCADE</literal>, minus tables that are not part of the
382382
subscription. This will work correctly if all affected tables are part
383383
of the same subscription. But if some tables to be truncated on the

0 commit comments

Comments
 (0)