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

Commit e7814b4

Browse files
committed
Fix capitalization of "Tcl"
1 parent 4307177 commit e7814b4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/src/sgml/install-windows.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ $ENV{MSBFLAGS}="/m";
205205

206206
<variablelist>
207207
<varlistentry>
208-
<term><productname>ActiveState TCL</productname></term>
208+
<term><productname>ActiveState Tcl</productname></term>
209209
<listitem><para>
210210
Required for building <application>PL/Tcl</application> (Note: version
211211
8.4 is required, the free Standard Distribution is sufficient).

doc/src/sgml/xact.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
Subtransactions can be started explicitly using the
123123
<command>SAVEPOINT</command> command, but can also be started in
124124
other ways, such as PL/pgSQL's <literal>EXCEPTION</literal> clause.
125-
PL/Python and PL/TCL also support explicit subtransactions.
125+
PL/Python and PL/Tcl also support explicit subtransactions.
126126
Subtransactions can also be started from other subtransactions.
127127
The top-level transaction and its child subtransactions form a
128128
hierarchy or tree, which is why we refer to the main transaction as

src/pl/tcl/pltcl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ static void pltcl_init_tuple_store(pltcl_call_state *call_state);
334334
/*
335335
* Hack to override Tcl's builtin Notifier subsystem. This prevents the
336336
* backend from becoming multithreaded, which breaks all sorts of things.
337-
* That happens in the default version of Tcl_InitNotifier if the TCL library
337+
* That happens in the default version of Tcl_InitNotifier if the Tcl library
338338
* has been compiled with multithreading support (i.e. when TCL_THREADS is
339339
* defined under Unix, and in all cases under Windows).
340340
* It's okay to disable the notifier because we never enter the Tcl event loop

0 commit comments

Comments
 (0)