diff options
author | Ryan Johnson <rjohnson@mozilla.com> | 2021-05-28 12:36:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-28 12:36:36 -0700 |
commit | 05a7219ba9605649cb6daa281e26209eaa73adf0 (patch) | |
tree | 63c9443b214d52257ff4ef5546f9e70c8b7365cd /files/ko/web/api/eventsource | |
parent | 220a7d23b0755acc06146c1262aa09ba22d6e3b1 (diff) | |
download | translated-content-05a7219ba9605649cb6daa281e26209eaa73adf0.tar.gz translated-content-05a7219ba9605649cb6daa281e26209eaa73adf0.tar.bz2 translated-content-05a7219ba9605649cb6daa281e26209eaa73adf0.zip |
fix MacroWrongXRefError flaws for some domxref calls (#1018)
Diffstat (limited to 'files/ko/web/api/eventsource')
-rw-r--r-- | files/ko/web/api/eventsource/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ko/web/api/eventsource/index.html b/files/ko/web/api/eventsource/index.html index 9d0df03b5d..4d3bc5e597 100644 --- a/files/ko/web/api/eventsource/index.html +++ b/files/ko/web/api/eventsource/index.html @@ -49,11 +49,11 @@ translation_of: Web/API/EventSource <dl> <dt>{{domxref("EventSource.onerror")}}</dt> - <dd>Is an {{domxref("EventHandler")}} called when an error occurs and the {{event("error")}} event is dispatched on an <code>EventSource</code> object.</dd> + <dd>Is an {{event("Event_handlers", "event handler")}} called when an error occurs and the {{event("error")}} event is dispatched on an <code>EventSource</code> object.</dd> <dt>{{domxref("EventSource.onmessage")}}</dt> - <dd>Is an {{domxref("EventHandler")}} called when a {{event("message")}} event is received, that is when a message is coming from the source.</dd> + <dd>Is an {{event("Event_handlers", "event handler")}} called when a {{event("message")}} event is received, that is when a message is coming from the source.</dd> <dt>{{domxref("EventSource.onopen")}}</dt> - <dd>Is an {{domxref("EventHandler")}} called when an {{event("open")}} event is received, that is when the connection was just opened.</dd> + <dd>Is an {{event("Event_handlers", "event handler")}} called when an {{event("open")}} event is received, that is when the connection was just opened.</dd> </dl> <h2 id="Methods">Methods</h2> |