mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-23 06:03:07 +03:00
type typo
This commit is contained in:
parent
d9d57ee1a1
commit
92a6c91644
@ -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.
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user