From 911c5d09a6b51d96bad2062fb4477ea1ff4a20a5 Mon Sep 17 00:00:00 2001 From: Manish Date: Sat, 27 May 2023 03:33:20 +0530 Subject: [PATCH] fix-issue-249 --- js/levels.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/levels.js b/js/levels.js index 97e1172..6dcf237 100644 --- a/js/levels.js +++ b/js/levels.js @@ -395,7 +395,7 @@ var levels = [ doThis : "Select the 1st bento", selector : "bento:nth-last-child(3)", syntax: ":nth-last-child(A)", - help : "Selects the children from the bottom of the parent. This is like nth-child, but counting from the back!", + help : "Selects the children from the bottom of the parent. It selects elements based on their position among a group of siblings, counting from the end.", examples : [ ':nth-last-child(2) selects all second-to-last child elements.' ],