Fix typos in argument names

Simple fix
This commit is contained in:
Martin Jul
2014-11-14 14:51:21 +01:00
parent a6b1e4ff84
commit f9ff2f255d
+2 -2
View File
@@ -80,8 +80,8 @@ declare module React {
export interface TestUtils {
Simulate: Simulate;
renderIntoDocument<P>(instance: ReactComponentElement<P>): ReactComponentElement<P>;
renderIntoDocument(instnace: ReactHTMLElement): ReactHTMLElement;
renderIntoDocument(instnace: ReactSVGElement): ReactSVGElement;
renderIntoDocument(instance: ReactHTMLElement): ReactHTMLElement;
renderIntoDocument(instance: ReactSVGElement): ReactSVGElement;
mockComponent(componentClass: ReactComponentFactory<any>, mockTagName?: string): TestUtils;
isDescriptorOfType(descriptor: ReactElement<any, any>, componentClass: ReactComponentFactory<any>): boolean;
isDOMComponent(instance: ReactElement<any, any>): boolean;