From 7e6f4ced0e2521be787746c5d83a69dcff0172b7 Mon Sep 17 00:00:00 2001 From: Lassi Haaranen <lassi.haaranen@gmail.com> Date: Sun, 11 Apr 2021 10:58:12 +0300 Subject: [PATCH] Clarify find_the_right_element comment --- content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content.js b/content.js index e89d288..0afae1b 100644 --- a/content.js +++ b/content.js @@ -379,7 +379,7 @@ let Content = { initialJs: 'function getContentFromBlog(blogId) {\n' + '\t// Get the right div according to the given blogid\n' + '\tlet blog = "Replace this string with the expression to get the blog div";\n' - + '\t// Get the HTML element with content class from the blog div\n' + + '\t// Get all elements with content class from the blog div\n' + '\tlet content = "Replace this string with the expression to get the elements with \'content\' class from the blog div";\n' + '\t// Write the return statement to return content\n' + '}', -- GitLab