Update broken links

This commit is contained in:
Geoffrey Booth
2016-12-03 23:49:44 -08:00
parent 2ca0f44cc8
commit b7dbee2402
6 changed files with 6 additions and 6 deletions

View File

@@ -1530,7 +1530,7 @@ rules are necessary.</p>
<div class="pilwrap ">
<a class="pilcrow" href="#section-65">&#182;</a>
</div>
<p><a href="http://jashkenas.github.com/coffee-script/#existence">The existential operator</a>.</p>
<p><a href="http://coffeescript.org/#existential-operator">The existential operator</a>.</p>
</div>

View File

@@ -1740,7 +1740,7 @@ exports.TaggedTemplateCall = <span class="hljs-class"><span class="hljs-keyword"
</div>
<p>Node to extend an objects prototype with an ancestor object.
After <code>goog.inherits</code> from the
<a href="http://closure-library.googlecode.com/svn/docs/closureGoogBase.js.html">Closure Library</a>.</p>
<a href="https://github.com/google/closure-library/blob/master/closure/goog/base.js">Closure Library</a>.</p>
</div>

View File

@@ -4104,7 +4104,7 @@ six = -&gt;
inheritance, with the re-addition of the <code>extends</code> keyword.
Added experimental <a href="http://narwhaljs.org/">Narwhal</a>
support (as a Tusk package), contributed by
<a href="http://tlrobinson.net/">Tom Robinson</a>, including
<a href="http://blog.tlrobinson.net/">Tom Robinson</a>, including
<b>bin/cs</b> as a CoffeeScript REPL and interpreter.
New <code>--no-wrap</code> option to suppress the safety function
wrapper.

View File

@@ -2388,7 +2388,7 @@ six = -&gt;
inheritance, with the re-addition of the <code>extends</code> keyword.
Added experimental <a href="http://narwhaljs.org/">Narwhal</a>
support (as a Tusk package), contributed by
<a href="http://tlrobinson.net/">Tom Robinson</a>, including
<a href="http://blog.tlrobinson.net/">Tom Robinson</a>, including
<b>bin/cs</b> as a CoffeeScript REPL and interpreter.
New <code>--no-wrap</code> option to suppress the safety function
wrapper.

View File

@@ -653,7 +653,7 @@ grammar =
o 'SimpleAssignable --', -> new Op '--', $1, null, true
o 'SimpleAssignable ++', -> new Op '++', $1, null, true
# [The existential operator](http://jashkenas.github.com/coffee-script/#existence).
# [The existential operator](http://coffeescript.org/#existential-operator).
o 'Expression ?', -> new Existence $1
o 'Expression + Expression', -> new Op '+' , $1, $3

View File

@@ -803,7 +803,7 @@ exports.TaggedTemplateCall = class TaggedTemplateCall extends Call
# Node to extend an object's prototype with an ancestor object.
# After `goog.inherits` from the
# [Closure Library](http://closure-library.googlecode.com/svn/docs/closureGoogBase.js.html).
# [Closure Library](https://github.com/google/closure-library/blob/master/closure/goog/base.js).
exports.Extends = class Extends extends Base
constructor: (@child, @parent) ->