Skip to content

Commit eedeec7

Browse files
committed
Add description & bug fixes
1 parent e6a8633 commit eedeec7

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
### Hexlet tests and linter status:
1+
### README
22

3-
[![Actions Status](https://github.com/thedoorbell/fullstack-javascript-project-44/actions/workflows/hexlet-check.yml/badge.svg)](https://github.com/thedoorbell/fullstack-javascript-project-44/actions)
3+
"Brain Games" - is a set of five console games based on the principle of popular mobile applications for brain training.
44

5-
[![Maintainability](https://api.codeclimate.com/v1/badges/df7e831b6780077b35d8/maintainability)](https://codeclimate.com/github/thedoorbell/fullstack-javascript-project-44/maintainability)
5+
## Minimum requirements:
6+
7+
Linux, MacOS or Windows (WLS)
68

79
### brain-even demo run
810

@@ -23,3 +25,9 @@
2325
### brain-prime demo run
2426

2527
<https://asciinema.org/a/rONeKqBMfSAkx1LnrGsDaOrSk>
28+
29+
### Hexlet tests and linter status:
30+
31+
[![Actions Status](https://github.com/thedoorbell/fullstack-javascript-project-44/actions/workflows/hexlet-check.yml/badge.svg)](https://github.com/thedoorbell/fullstack-javascript-project-44/actions)
32+
33+
[![Maintainability](https://api.codeclimate.com/v1/badges/df7e831b6780077b35d8/maintainability)](https://codeclimate.com/github/thedoorbell/fullstack-javascript-project-44/maintainability)

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const playGame = (rules, game) => {
77

88
for (let gameRound = 1; gameRound <= 3; gameRound += 1) {
99
const [question, correctAnswer] = game();
10-
console.log('Question: ', question);
10+
console.log('Question:', question);
1111
const answer = readlineSync.question('Your answer: ');
1212

1313
if (answer === correctAnswer) {

0 commit comments

Comments
 (0)