diff options
author | Justin Donaldson <jdonaldson@gmail.com> | 2013-08-21 22:11:01 -0700 |
---|---|---|
committer | Justin Donaldson <jdonaldson@gmail.com> | 2013-08-21 22:11:01 -0700 |
commit | 92a6c9164440d60ecf549c9211312b069abab1e7 (patch) | |
tree | bb6eb8e45f7afbc9816e4d446d80f43e9998c616 /haxe.html.markdown | |
parent | d9d57ee1a1c3e5239251efdd8aeb0a320cfbea49 (diff) |
type typo
Diffstat (limited to 'haxe.html.markdown')
-rw-r--r-- | haxe.html.markdown | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/haxe.html.markdown b/haxe.html.markdown index 319c6902..e1ab645c 100644 --- a/haxe.html.markdown +++ b/haxe.html.markdown @@ -621,7 +621,9 @@ class TypedefsAndStructuralTypes { a "FooObject" is expected. */ - var f = function(fo:FooObj){ trace('$fo was passed in to this function')}; + var f = function(fo:FooObject){ + trace('$fo was passed in to this function'); + } f(fooObj); // call the FooObject signature function with fooObj. /* |