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:
@@ -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.
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user