From 6cca974fa5f4d8cf2c1b2267bcdada7fba2a12df Mon Sep 17 00:00:00 2001 From: Sun Xiaoran Date: Thu, 11 Mar 2021 03:23:06 +0800 Subject: [PATCH] fix: typo (#523) --- source/documentation/modules/string.html.md.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/documentation/modules/string.html.md.erb b/source/documentation/modules/string.html.md.erb index 7ee1857..35f411f 100644 --- a/source/documentation/modules/string.html.md.erb +++ b/source/documentation/modules/string.html.md.erb @@ -72,11 +72,11 @@ title: sass:string <% example(autogen_css: false) do %> @debug string.length("Helvetica Neue"); // 14 @debug string.length(bold); // 4 - @debug string.index(""); // 0 + @debug string.length(""); // 0 === @debug string.length("Helvetica Neue") // 14 @debug string.length(bold) // 4 - @debug string.index("") // 0 + @debug string.length("") // 0 <% end %> <% end %>