Skip to content

Commit 78f9a47

Browse files
committed
again a few more :kbd:
1 parent fbf3083 commit 78f9a47

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

src/doc/en/prep/Intro-Tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ The examples illustrate that the syntax requires ``f.integrate(x)`` and
450450
not just ``f.integrate()``. (After all, the latter could be ambiguous
451451
if several variables had already been defined).
452452

453-
To stop viewing the documentation after pressing tab, you can press the
453+
To stop viewing the documentation after pressing :kbd:`Tab`, you can press the
454454
:kbd:`Escape` key, just like with the completion of options.
455455

456456
If you would like the documentation to be visible longer\-term, you can

src/sage/graphs/digraph_generators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
sage: p = digraphs.Circulant(10,[2,3])
1313
1414
More interestingly, one can get the list of all digraphs that Sage knows how to
15-
build by typing ``digraphs.`` in Sage and then hitting tab.
15+
build by typing ``digraphs.`` in Sage and then hitting :kbd:`Tab`.
1616
1717
.. csv-table::
1818
:class: contentstable

src/sage/graphs/graph_generators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
sage: h = graphs.HouseGraph()
1414
1515
More interestingly, one can get the list of all graphs that Sage knows how to
16-
build by typing ``graphs.`` in Sage and then hitting tab.
16+
build by typing ``graphs.`` in Sage and then hitting :kbd:`Tab`.
1717
"""
1818

1919
import subprocess

src/sage/interfaces/kash.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,13 @@
3838
Issues
3939
------
4040
41-
For some reason hitting Control-C to interrupt a calculation
42-
doesn't work correctly. (TODO)
41+
For some reason hitting :kbd:`Control` + :kbd:`C` to interrupt a calculation
42+
does not work correctly. (TODO)
4343
4444
Tutorial
4545
--------
4646
47-
The examples in this tutorial require that kash
48-
be installed.
47+
The examples in this tutorial require that kash be installed.
4948
5049
Basics
5150
~~~~~~

src/sage/libs/singular/function.pyx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,8 +1200,8 @@ cdef class SingularFunction(SageObject):
12001200
12011201
- ``args`` -- a list of arguments
12021202
- ``ring`` -- a multivariate polynomial ring
1203-
- ``interruptible`` -- if ``True`` pressing Ctrl-C during the
1204-
execution of this function will interrupt the computation
1203+
- ``interruptible`` -- if ``True`` pressing :kbd:`Ctrl` + :kbd:`C`
1204+
during the execution of this function will interrupt the computation
12051205
(default: ``True``)
12061206
12071207
- ``attributes`` -- a dictionary of optional Singular
@@ -1332,7 +1332,7 @@ INPUT:
13321332
13331333
- ``args`` -- a list of arguments
13341334
- ``ring`` -- a multivariate polynomial ring
1335-
- ``interruptible`` -- if ``True`` pressing Ctrl-C during the
1335+
- ``interruptible`` -- if ``True`` pressing :kbd:`Ctrl` + :kbd:`C` during the
13361336
execution of this function will interrupt the computation
13371337
(default: ``True``)
13381338
- ``attributes`` -- a dictionary of optional Singular attributes

0 commit comments

Comments
 (0)