From 0f4d81df7a6711094d1b0614601f86aa558b5dd7 Mon Sep 17 00:00:00 2001 From: Nathaniel Sabanski Date: Sun, 7 Jul 2024 18:13:10 -0700 Subject: [PATCH] Version bump to 1.3.1 --- surreal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/surreal.js b/surreal.js index 51e96fc..703033e 100644 --- a/surreal.js +++ b/surreal.js @@ -63,7 +63,7 @@ let $ = { // Convenience for internals. if ($.isNode(selector)) return $.sugar(selector) // Valid element. return null // Invalid. }, - // any() is me() but will return an array of nodes or empty [] if nothing is found. + // any() is me() but will return an array of elements or empty [] if nothing is found. // You may optionally use forEach/map/filter/reduce. // Example: any('button') any(selector, start=document, warning=true) {