diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-07-19 11:16:57 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-07-19 11:16:57 +0900 |
commit | 0e829c845e58a9168c6e609407a7b984725a69c9 (patch) | |
tree | 3366443ddcc193aada0632e3c03a7645ecb122cb /sphinx/ext/jsmath.py | |
parent | 2c5a9f39754b904402d7d8e2a2f619c0010d74cc (diff) | |
download | sphinx-git-0e829c845e58a9168c6e609407a7b984725a69c9.tar.gz |
sphinx.ext.math: Update the label of permalink
Diffstat (limited to 'sphinx/ext/jsmath.py')
-rw-r--r-- | sphinx/ext/jsmath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/jsmath.py b/sphinx/ext/jsmath.py index 9fb790e1b..9981ffd3a 100644 --- a/sphinx/ext/jsmath.py +++ b/sphinx/ext/jsmath.py @@ -36,7 +36,7 @@ def html_visit_displaymath(self, node): # necessary to e.g. set the id property correctly if node['number']: self.body.append('<span class="eqno">(%s)' % node['number']) - self.add_permalink_ref(node, _('Permalink to this code')) + self.add_permalink_ref(node, _('Permalink to this equation')) self.body.append('</span>') self.body.append(self.starttag(node, 'div', CLASS='math')) else: |