Skip to content

Commit

Permalink
fix typo in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoirier committed Jan 17, 2018
1 parent b9ffe4e commit f84bf50
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}
};
```

Expand Down

0 comments on commit f84bf50

Please sign in to comment.