aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/src/sgml/install-windows.sgml2
-rw-r--r--doc/src/sgml/xact.sgml2
-rw-r--r--src/pl/tcl/pltcl.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/install-windows.sgml b/doc/src/sgml/install-windows.sgml
index f959d27d201..d2cc688c1f7 100644
--- a/doc/src/sgml/install-windows.sgml
+++ b/doc/src/sgml/install-windows.sgml
@@ -205,7 +205,7 @@ $ENV{MSBFLAGS}="/m";
<variablelist>
<varlistentry>
- <term><productname>ActiveState TCL</productname></term>
+ <term><productname>ActiveState Tcl</productname></term>
<listitem><para>
Required for building <application>PL/Tcl</application> (Note: version
8.4 is required, the free Standard Distribution is sufficient).
diff --git a/doc/src/sgml/xact.sgml b/doc/src/sgml/xact.sgml
index 0f768a23a69..07b94b11329 100644
--- a/doc/src/sgml/xact.sgml
+++ b/doc/src/sgml/xact.sgml
@@ -122,7 +122,7 @@
Subtransactions can be started explicitly using the
<command>SAVEPOINT</command> command, but can also be started in
other ways, such as PL/pgSQL's <literal>EXCEPTION</literal> clause.
- PL/Python and PL/TCL also support explicit subtransactions.
+ PL/Python and PL/Tcl also support explicit subtransactions.
Subtransactions can also be started from other subtransactions.
The top-level transaction and its child subtransactions form a
hierarchy or tree, which is why we refer to the main transaction as
diff --git a/src/pl/tcl/pltcl.c b/src/pl/tcl/pltcl.c
index e8f9d7b289c..6187e157817 100644
--- a/src/pl/tcl/pltcl.c
+++ b/src/pl/tcl/pltcl.c
@@ -334,7 +334,7 @@ static void pltcl_init_tuple_store(pltcl_call_state *call_state);
/*
* Hack to override Tcl's builtin Notifier subsystem. This prevents the
* backend from becoming multithreaded, which breaks all sorts of things.
- * That happens in the default version of Tcl_InitNotifier if the TCL library
+ * That happens in the default version of Tcl_InitNotifier if the Tcl library
* has been compiled with multithreading support (i.e. when TCL_THREADS is
* defined under Unix, and in all cases under Windows).
* It's okay to disable the notifier because we never enter the Tcl event loop