diff options
author | Andre Polykanine <ap@oire.me> | 2018-10-23 11:37:18 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-23 11:37:18 +0300 |
commit | 5b80843f417ac615dc7724f3e08cb78b70fcc8b0 (patch) | |
tree | a29002004898d17215f388ef5ede70c6b46a141e | |
parent | 8675fad4c753bc21496c83e5c51d29a6753ff1e8 (diff) | |
parent | 1970732479a296b3db1082ff07054f93819ffb67 (diff) |
Merge pull request #3325 from thornjad/update_tcl-en_links
[Tcl/en] update tcl hyperlinks
-rw-r--r-- | tcl.html.markdown | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tcl.html.markdown b/tcl.html.markdown index f48d5271..3d23870b 100644 --- a/tcl.html.markdown +++ b/tcl.html.markdown @@ -5,7 +5,7 @@ contributors: filename: learntcl.tcl --- -Tcl was created by [John Ousterhout](https://wiki.tcl.tk/John%20Ousterout) as a +Tcl was created by [John Ousterhout](https://wiki.tcl-lang.org/page/John+Ousterhout) as a reusable scripting language for circuit design tools that he authored. In 1997 he was awarded the [ACM Software System Award](https://en.wikipedia.org/wiki/ACM_Software_System_Award) for Tcl. Tcl @@ -283,7 +283,7 @@ set c [expr {$a + $b}] # Since "expr" performs variable substitution on its own, brace the expression # to prevent Tcl from performing variable substitution first. See -# "http://wiki.tcl.tk/Brace%20your%20#%20expr-essions" for details. +# "https://wiki.tcl-lang.org/page/Brace+your+expr-essions" for details. # "expr" understands variable and script substitution: @@ -581,8 +581,8 @@ a ## Reference -[Official Tcl Documentation](http://www.tcl.tk/man/tcl/) +[Official Tcl Documentation](https://www.tcl-lang.org) -[Tcl Wiki](http://wiki.tcl.tk) +[Tcl Wiki](https://wiki.tcl-lang.org) [Tcl Subreddit](http://www.reddit.com/r/Tcl) |