From 68b3a85dfeb9e25cd7208658418c3b90561c2f27 Mon Sep 17 00:00:00 2001 From: Holger Jeromin Date: Tue, 15 May 2018 14:48:40 +0200 Subject: [PATCH] fixing trailing whitespace --- types/jquery/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/jquery/index.d.ts b/types/jquery/index.d.ts index 9f955ef9d2..981993e2d7 100644 --- a/types/jquery/index.d.ts +++ b/types/jquery/index.d.ts @@ -4558,12 +4558,12 @@ interface JQuery extends Iterable * Attach an event handler function for one or more events to the selected elements. * * @param events One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin". - * @param handler A function to execute when the event is triggered. + * @param handler A function to execute when the event is triggered. * @see {@link https://api.jquery.com/on/} * @since 1.7 */ on(events: string, - handler: ((event: JQueryEventObject) => void)): this; + handler: ((event: JQueryEventObject) => void)): this; /** * Attach an event handler function for one or more events to the selected elements. *