diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-01-27 07:38:11 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-01-27 07:38:11 -0800 |
| commit | a43b53c14c23f4718d65b5e867daf3ec098d1bb5 (patch) | |
| tree | 0a4663b0f4b97d19668a33c127b1317a2ec6db24 /doc/mrbgems/README.md | |
| parent | e5dd50b917fa78375ba0488ca728c99e83e629b6 (diff) | |
| parent | 030e0df38477c1efc9f161b782345ff45b29ffca (diff) | |
| download | mruby-a43b53c14c23f4718d65b5e867daf3ec098d1bb5.tar.gz mruby-a43b53c14c23f4718d65b5e867daf3ec098d1bb5.zip | |
Merge pull request #785 from bovi/readme
Improve Documentation
Diffstat (limited to 'doc/mrbgems/README.md')
| -rw-r--r-- | doc/mrbgems/README.md | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/doc/mrbgems/README.md b/doc/mrbgems/README.md index 49c8f56d1..6c473b57d 100644 --- a/doc/mrbgems/README.md +++ b/doc/mrbgems/README.md @@ -99,13 +99,10 @@ mrbgems expects that you have implemented a C method called by the name of your GEM. If you call your GEM *c_extension_example*, your finalizer method could look like this: -``` -void -mrb_c_extension_example_gem_final(mrb_state* mrb) { - free(someone); -} -``` - + void + mrb_c_extension_example_gem_final(mrb_state* mrb) { + free(someone); + } ### Example |
