From ff3cc0f65f55dec1537ad7189fde12363a62e8d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kaj=20Bj=C3=B6rklund?= Date: Fri, 30 Aug 2013 19:07:17 +0300 Subject: [PATCH] Capitalize Script in JavaScript --- README.md | 4 ++-- src/bitboard.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3397db9..ca3f2c6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Javascript Chess +# JavaScript Chess -This program is a Javascript implementation of the board game [Chess](http://en.wikipedia.org/wiki/Chess), with a computer player opponent. All move types are supported, including en passant, castling and promotion. +This program is a JavaScript implementation of the board game [Chess](http://en.wikipedia.org/wiki/Chess), with a computer player opponent. All move types are supported, including en passant, castling and promotion. Try it out [here](http://www.iki.fi/kbjorklu/chess/). Usage is shown below the chessboard. At least Internet Explorer (8 or later), Chrome and Firefox should work. diff --git a/src/bitboard.js b/src/bitboard.js index 642ea4d..5f342e2 100644 --- a/src/bitboard.js +++ b/src/bitboard.js @@ -25,7 +25,7 @@ Chess.Bitboard = function(low, high) { /** * @see http://goo.gl/pyzBq (Bit Twiddling Hacks) - * @see http://goo.gl/dnqDn (Bit-peeking bits of Javascript) + * @see http://goo.gl/dnqDn (Bit-peeking bits of JavaScript) * @param {number} v 32 bit integer * @return {number} 0-32 number of bits set in v */