fix typo in readme

This commit is contained in:
Joseph Poirier 2018-01-17 08:33:04 -06:00
parent b9ffe4eeb6
commit f84bf504d9
No known key found for this signature in database
GPG key ID: 65858A2540EBDA40

View file

@ -199,11 +199,11 @@ the functions it defines. For example:
```C
struct LibraryFunction PlatformLibrary[] =
{
ShowComplex, "void ShowComplex(struct complex *)"},
Cpeek, "int peek(int, int)"},
Cpoke, "void poke(int, int, int)"},
Crandom, "int random(int)"},
NULL, NULL}
{ShowComplex, "void ShowComplex(struct complex *)"},
{Cpeek, "int peek(int, int)"},
{Cpoke, "void poke(int, int, int)"},
{Crandom, "int random(int)"},
{NULL, NULL}
};
```