Skip to content

Commit 5d41ad5

Browse files
Full words.
1 parent f5b5bb3 commit 5d41ad5

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

mankala/Game.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ module Mankala {
1111
export var NoMove = -1;
1212

1313
const bodyId = "body";
14-
const humanScoreId = "humscore";
15-
const computerScoreId = "compscore"
14+
const humanScoreId = "humanScore";
15+
const computerScoreId = "computerScore"
1616

1717
export interface IPositionList extends Base.IList {
1818
data: Position;

mankala/play.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<link rel="stylesheet" type="text/css" href="play.css"/>
1010
</head>
1111
<body id="body" onload="Mankala.testBrowser()">
12-
<div class="hscore">Human: <span id="humscore">0</span></div>
13-
<div class="cscore">Computer: <span id="compscore">0</span></div>
12+
<div class="hscore">Human: <span id="humanScore">0</span></div>
13+
<div class="cscore">Computer: <span id="computerScore">0</span></div>
1414
</body>
1515
</html>

0 commit comments

Comments
 (0)