From f13ce87f35ed60da77f7e0ea4bc229413fb6655a Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Wed, 19 Feb 2025 11:14:47 +0900 Subject: [PATCH] Remove workaround for Web IDL parser bug See https://github.com/speced/bikeshed/issues/3023. --- index.bs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/index.bs b/index.bs index 8a83a41..2909c0f 100644 --- a/index.bs +++ b/index.bs @@ -32,10 +32,9 @@ For now, see the [explainer](https://github.com/webmachinelearning/translation-a

The translator API

-// TODO FIX: workaround for https://github.com/speced/bikeshed/issues/3023 -// partial interface AI { -// readonly attribute AITranslatorFactory translator; -// }; +partial interface AI { + readonly attribute AITranslatorFactory translator; +}; [Exposed=(Window,Worker), SecureContext] interface AITranslatorFactory {