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

Commit 0083a82

Browse files
committed
Fix some spelling errors in the documentation
Author: Daniel Gustafsson <daniel@yesql.se>
1 parent fbec745 commit 0083a82

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/src/sgml/libpq.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8478,7 +8478,7 @@ main(int argc, char **argv)
84788478
exit_nicely(conn);
84798479
}
84808480

8481-
/* Set always-secure search path, so malicous users can't take control. */
8481+
/* Set always-secure search path, so malicious users can't take control. */
84828482
res = PQexec(conn,
84838483
"SELECT pg_catalog.set_config('search_path', '', false)");
84848484
if (PQresultStatus(res) != PGRES_TUPLES_OK)
@@ -8648,7 +8648,7 @@ main(int argc, char **argv)
86488648
exit_nicely(conn);
86498649
}
86508650

8651-
/* Set always-secure search path, so malicous users can't take control. */
8651+
/* Set always-secure search path, so malicious users can't take control. */
86528652
res = PQexec(conn,
86538653
"SELECT pg_catalog.set_config('search_path', '', false)");
86548654
if (PQresultStatus(res) != PGRES_TUPLES_OK)
@@ -8875,7 +8875,7 @@ main(int argc, char **argv)
88758875
exit_nicely(conn);
88768876
}
88778877

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

doc/src/sgml/lobj.sgml

+1-1
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

+1-1
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)