1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-07 23:37:32 +02:00

type typo

This commit is contained in:
Justin Donaldson
2013-08-21 22:11:01 -07:00
parent d9d57ee1a1
commit 92a6c91644

View File

@@ -621,7 +621,9 @@ class TypedefsAndStructuralTypes {
a "FooObject" is expected. 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. f(fooObj); // call the FooObject signature function with fooObj.
/* /*