Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions exercises/concept/captains-log/.docs/instructions.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Instructions
# Instructions

Mary is a big fan of the TV series Star Trek: The Next Generation.
She often plays pen-and-paper role playing games, where she and her friends pretend to be the crew of the Starship Enterprise.
Expand All @@ -7,7 +7,7 @@ She loves the creative part of the game, but doesn't like to generate random dat

Help Mary by creating random generators for data commonly appearing in the captain's log.

### 1. Generate a random starship registry number
## 1. Generate a random starship registry number

Enterprise (registry number NCC-1701) is not the only starship flying around!
When it rendezvous with another starship, Mary needs to log the registry number of that starship.
Expand All @@ -21,7 +21,7 @@ randomShipRegistryNumber();
// => "NCC-1947"
```

### 2. Generate a random stardate
## 2. Generate a random stardate

What's the use of a log if it doesn't include dates?

Expand All @@ -36,7 +36,7 @@ randomStardate();
// => 41458.15721310934
```

### 3. Generate a random planet
## 3. Generate a random planet

The Starship Enterprise encounters many planets in its travels.
Planets in the Star Trek universe are split into categories based on their properties.
Expand Down