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 */