1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-03 10:54:46 +00:00

Corrected typo and removed replication of what's already declared formally.

This commit is contained in:
Thomas Harte 2017-08-16 14:53:03 -04:00
parent de1c526789
commit 903a17ae11

View File

@ -45,7 +45,7 @@ enum Key: uint16_t {
};
/*!
Models an Amstrad CPC, a CRT-outputting machine with a keyboard that can accept configuration targets.
Models an Amstrad CPC.
*/
class Machine:
public CRTMachine::Machine,
@ -54,7 +54,7 @@ class Machine:
public:
virtual ~Machine();
/// Creates an returns an Amstrad CPC on the heap.
/// Creates and returns an Amstrad CPC on the heap.
static Machine *AmstradCPC();
/// Sets the contents of rom @c type to @c data. Assumed to be a setup step; has no effect once a machine is running.