Removed array wrapping from examples and readme

This commit is contained in:
Josh Nussbaum
2016-06-13 02:05:58 -04:00
parent 39b04810e4
commit 341dddcfcc
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ defmodule MyLib do
attach_function :puts, [:string], :int attach_function :puts, [:string], :int
end end
MyLib.puts(["Hello World from C stdlib"]) MyLib.puts("Hello World from C stdlib")
``` ```
## Installation ## Installation

View File

@@ -4,4 +4,4 @@ defmodule MyLib do
attach_function :puts, [:string], :int attach_function :puts, [:string], :int
end end
MyLib.puts(["Hello World from C stdlib"]) MyLib.puts("Hello World from C stdlib")