changeset 61:c4bf1cee771d

Linked more readably to Remedial JS.
author Atul Varma <varmaa@toolness.com>
date Wed, 15 Apr 2009 09:19:29 -0700
parents 7fff33e9786b
children 08db177cec81
files js/browser-couch.js
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/js/browser-couch.js	Wed Apr 15 09:17:55 2009 -0700
+++ b/js/browser-couch.js	Wed Apr 15 09:19:29 2009 -0700
@@ -40,9 +40,10 @@
 
 // === {{{isArray()}}} ===
 //
-// A helper function to determine whether an object is an Array
-// or not. Taken from "Remedial Javascript" by Douglas Crockford
-// at http://javascript.crockford.com/remedial.html.
+// A helper function to determine whether an object is an Array or
+// not. Taken from
+// [[http://javascript.crockford.com/remedial.html|Remedial JavaScript]]
+// by Douglas Crockford.
 
 function isArray(value) {
   return (typeof value.length === 'number' &&