Skip to content

Commit

Permalink
fix a remaining typo in the doc
Browse files Browse the repository at this point in the history
  • Loading branch information
boucman committed Mar 11, 2013
1 parent 9b9f1ae commit e4c46a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ As you can probably see, automatic wrapping and type conversion becomes hard whe
Using Enums
------------

Enums are transformed into strings. To handle enums you need to first register them, then register the different values as mapping from string to the appropriate value. For each string you can declare independently if it is case-sensitive or not. You can also register multiple strings for a single enum value. Any matching lua string will be transformed into the union value, but the first correct value will be used when tranforming from C to lua
Enums are transformed into strings. To handle enums you need to first register them, then register the different values as mapping from string to the appropriate value. For each string you can declare independently if it is case-sensitive or not. You can also register multiple strings for a single enum value. Any matching lua string will be transformed into the enum value, but the first correct value will be used when tranforming from C to lua
```c
#include <stdio.h>

Expand Down

0 comments on commit e4c46a0

Please sign in to comment.