Browse Source

chore(typo): fix typo (#9085)

Julian Rüth 7 years ago
parent
commit
f43ae6d151
1 changed files with 1 additions and 1 deletions
  1. 1 1
      types/options.d.ts

+ 1 - 1
types/options.d.ts

@@ -68,7 +68,7 @@ export interface ComponentOptions<
 
 
   el?: Element | string;
   el?: Element | string;
   template?: string;
   template?: string;
-  // hack is for funcitonal component type inference, should not used in user code
+  // hack is for functional component type inference, should not be used in user code
   render?(createElement: CreateElement, hack: RenderContext<Props>): VNode;
   render?(createElement: CreateElement, hack: RenderContext<Props>): VNode;
   renderError?(createElement: CreateElement, err: Error): VNode;
   renderError?(createElement: CreateElement, err: Error): VNode;
   staticRenderFns?: ((createElement: CreateElement) => VNode)[];
   staticRenderFns?: ((createElement: CreateElement) => VNode)[];