From 9ba2f471b7bc2ec69b0eb4ea8d0f19669a102ef8 Mon Sep 17 00:00:00 2001 From: Daniel Gasienica Date: Sun, 27 Aug 2017 19:44:12 -0400 Subject: [PATCH] Fix minor typo: underling --> underlying --- src/DOM/Event/EventTarget.purs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DOM/Event/EventTarget.purs b/src/DOM/Event/EventTarget.purs index b3494d4..dff4bcd 100644 --- a/src/DOM/Event/EventTarget.purs +++ b/src/DOM/Event/EventTarget.purs @@ -7,7 +7,7 @@ import DOM (DOM) import DOM.Event.Types (EventTarget, Event, EventType) -- | A boxed function that can be used as an event listener. This is necessary --- | due to the underling implementation of Eff functions. +-- | due to the underlying implementation of Eff functions. foreign import data EventListener :: # Effect -> Type -- | Creates an EventListener from a normal PureScript Eff function.