diff --git a/app/views/posts/_expanded.html.erb b/app/views/posts/_expanded.html.erb
index 42e2c20202af8588b955e5d5edce87bf8ef1bceb..41c263d973464c245bf37679bf9020eb39b9fadf 100644
--- a/app/views/posts/_expanded.html.erb
+++ b/app/views/posts/_expanded.html.erb
@@ -366,7 +366,7 @@
 
         <% if is_question && post.children.length >= SiteSetting["TableOfContentsThreshold"] && SiteSetting["TableOfContentsThreshold"] != -1 %>
           <div class="toc has-margin-left-4" id="toc-toggle">
-            <button class="toc--header" data-toggle="#toc-toggle" data-toggle-property="class" data-toggle-value="is-active">Show More</button>
+            <button class="toc--header" data-toggle="#toc-toggle" data-toggle-property="class" data-toggle-value="is-active">Table of Contents</button>
             <% sorted_answers = post.children.sort_by { |answer| answer.score }.reverse! %>
             <% sorted_answers.each do |answer| %>
               <% next if answer.deleted? && !moderator? %>