From 0dbec22bc7ab8eab5d84d0e0814344b7e1c0d690 Mon Sep 17 00:00:00 2001 From: Erin Altenhof-Long Date: Wed, 28 May 2014 17:19:17 -0700 Subject: [PATCH] docs(ngClick): improve style --- src/ngTouch/directive/ngClick.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngTouch/directive/ngClick.js b/src/ngTouch/directive/ngClick.js index 3ac1e3f2..258072ba 100644 --- a/src/ngTouch/directive/ngClick.js +++ b/src/ngTouch/directive/ngClick.js @@ -71,7 +71,7 @@ ngTouch.directive('ngClick', ['$parse', '$timeout', '$rootElement', // // What happens when the browser then generates a click event? // The browser, of course, also detects the tap and fires a click after a delay. This results in - // tapping/clicking twice. So we do "clickbusting" to prevent it. + // tapping/clicking twice. We do "clickbusting" to prevent it. // // How does it work? // We attach global touchstart and click handlers, that run during the capture (early) phase.