fix typo in readme
This commit is contained in:
parent
b9ffe4eeb6
commit
f84bf504d9
10
README.md
10
README.md
|
@ -199,11 +199,11 @@ the functions it defines. For example:
|
||||||
```C
|
```C
|
||||||
struct LibraryFunction PlatformLibrary[] =
|
struct LibraryFunction PlatformLibrary[] =
|
||||||
{
|
{
|
||||||
ShowComplex, "void ShowComplex(struct complex *)"},
|
{ShowComplex, "void ShowComplex(struct complex *)"},
|
||||||
Cpeek, "int peek(int, int)"},
|
{Cpeek, "int peek(int, int)"},
|
||||||
Cpoke, "void poke(int, int, int)"},
|
{Cpoke, "void poke(int, int, int)"},
|
||||||
Crandom, "int random(int)"},
|
{Crandom, "int random(int)"},
|
||||||
NULL, NULL}
|
{NULL, NULL}
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue