chore: typo (#198)

This commit is contained in:
herochen 2019-10-11 21:59:52 +08:00 committed by Evan You
parent 462d5c3477
commit 056764ce47

View File

@ -358,10 +358,10 @@ export interface ConditionalDynamicSlotNode extends ConditionalExpression {
export interface ListDynamicSlotNode extends CallExpression {
callee: typeof RENDER_LIST
arguments: [ExpressionNode, ListDyanmicSlotIterator]
arguments: [ExpressionNode, ListDynamicSlotIterator]
}
export interface ListDyanmicSlotIterator extends FunctionExpression {
export interface ListDynamicSlotIterator extends FunctionExpression {
returns: DynamicSlotNode
}