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.
*/
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.
/*