From c8e865ac8e2c5e09ea1e06ff609f491a035a8180 Mon Sep 17 00:00:00 2001 From: Kirankumar Sripati Date: Wed, 13 Jun 2018 18:36:22 +0530 Subject: [PATCH] docs: fix typo (#24470) PR Close #24470 --- aio/content/guide/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/testing.md b/aio/content/guide/testing.md index a8e87ecdf9..1509483b66 100644 --- a/aio/content/guide/testing.md +++ b/aio/content/guide/testing.md @@ -398,7 +398,7 @@ But a component is more than just its class. A component interacts with the DOM and with other components. The _class-only_ tests can tell you about class behavior. They cannot tell you if the component is going to render properly, -respond to user input and gestures, or integrate with its parent and and child components. +respond to user input and gestures, or integrate with its parent and child components. None of the _class-only_ tests above can answer key questions about how the components actually behave on screen.