From 82fbb8058184671a93152a37cab63d3df5ed5ee9 Mon Sep 17 00:00:00 2001 From: autokagami Date: Tue, 18 Aug 2020 18:33:40 +0200 Subject: [PATCH] Editorial: Align with Web IDL specification --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 1a71752..0dbd05f 100644 --- a/index.html +++ b/index.html @@ -1851,7 +1851,7 @@

The record type string

interface NDEFWriter { constructor(); - Promise<void> write(NDEFMessageSource message, optional NDEFWriteOptions options={}); + Promise<undefined> write(NDEFMessageSource message, optional NDEFWriteOptions options={}); }; [SecureContext, Exposed=Window] @@ -1861,7 +1861,7 @@

The record type string

attribute EventHandler onerror; attribute EventHandler onreading; - Promise<void> scan(optional NDEFScanOptions options={}); + Promise<undefined> scan(optional NDEFScanOptions options={}); }; [SecureContext, Exposed=Window]