Skip to content

Commit

Permalink
final fix for tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Daltz333 committed Apr 6, 2019
1 parent d402452 commit 18a8329
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions source/Pneumatics/pneumatics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ be passed to the DoubleSolenoid if teams have a non-standard PCM CAN ID

.. tabs::

.. code-tab:: C++
.. code-tab::C++
frc::DoubleSolenoid exampleDouble {1, 2};
frc::DoubleSolenoid exampleDouble {/* The PCM CAN ID */ 9, 1, 2};
Expand All @@ -86,7 +86,7 @@ be passed to the DoubleSolenoid if teams have a non-standard PCM CAN ID
exampleDouble.Set(frc::DoubleSolenoid::Value::kForward);
exampleDouble.Set(frc::DoubleSolenoid::Value::kReverse);
.. code-tab:: Java
.. code-tab::Java
import static edu.wpi.first.wpilibj.DoubleSolenoid.Value.*;
Expand Down
2 changes: 1 addition & 1 deletion source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ['sphinx_tabs']
extensions = ['sphinx_tabs.tabs']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

Expand Down
2 changes: 1 addition & 1 deletion source/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sphinx_rtd_theme
sphinx==2.0.0
sphinx
sphinx-tabs==1.1.10

0 comments on commit 18a8329

Please sign in to comment.