From 9df6ca1e26a107a4ec45d41a07904bb23a7b3bd6 Mon Sep 17 00:00:00 2001 From: Nathaniel Sabanski Date: Sat, 6 Jul 2024 10:26:58 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 185cb06..33e39e3 100644 --- a/README.md +++ b/README.md @@ -269,7 +269,7 @@ Looking for stuff [we recommend doing in vanilla JS](#no-surreal)? * Execute after the DOM is ready. Similar to jquery `ready()` * Add to `window.onload` while preventing overwrite of `window.onload` and predictable sequential loading. * Alternatives: - * Skip missing elements using `.?` example: `me("video")?.requestFullscreen()` + * Skip missing elements using `?.` example: `me("video")?.requestFullscreen()` * Place `