Skip to content

Commit b492fb9

Browse files
committed
Fix underline length
Signed-off-by: Daniel Lim Wee Soong <weesoong.lim@gmail.com>
1 parent 9b64e85 commit b492fb9

18 files changed

Lines changed: 19 additions & 19 deletions

File tree

docs/examples.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Examples
2-
============
2+
========
33

44
Here we have examples on how v2x converts a Verilog module to its corresponding model.xml and pb_type.xml files. These examples are taken from the `v2x test cases <https://github.com/SymbiFlow/python-symbiflow-v2x/tree/master/tests>`_.
55

docs/examples/clocks.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. Clock Example Tests
22
33
Clock
4-
==============
4+
=====
55

66
There are various ways for an input or output port to be detected as a clock by v2x. Here are examples on ways to do so.
77

docs/examples/clocks/autodetection.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Autodetection of clock from flipflop
2-
=====================================
2+
====================================
33

44
.. include:: ../../../tests/clocks/dff_one_clock/README.rst
55
.. include:: ../../../tests/clocks/dff_comb_one_clock/README.rst

docs/examples/clocks/manual_input.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Manually set inputs as clock
2-
==================================
2+
============================
33

44
.. include:: ../../../tests/clocks/input_attr_clock/README.rst
55
.. include:: ../../../tests/clocks/input_attr_not_clock/README.rst
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Manually set outputs as clock
2-
==================================
2+
=============================
33

44
.. include:: ../../../tests/clocks/output_attr_clock/README.rst
55
.. include:: ../../../tests/clocks/output_named_clk/README.rst

docs/examples/clocks/multiple.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Multiple clocks
2-
==================================
2+
===============
33

44
.. include:: ../../../tests/clocks/multiple_inputs_named_clk/README.rst
55
.. include:: ../../../tests/clocks/multiple_outputs_named_clk/README.rst

docs/examples/dsp.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. DSP Based Example Tests
22
33
DSP
4-
============
4+
===
55

66
.. toctree::
77

docs/examples/vtr-examples.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. Examples from the Verilog to Routing documentation / tutorials.
22
33
Verilog to Routing
4-
===========================
4+
==================
55

66
Primitive Block Timing Modeling Tutorial
77
----------------------------------------

tests/clocks/dff_one_clock/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
D-Flipflop with one clock
2-
+++++++++++++++++++++++++++++++++++
2+
+++++++++++++++++++++++++
33

44
The following shows a simple D-flip flop driven by one clock. ``input wire a`` should be detected as a clock because it drives the flip flop.
55

tests/clocks/dff_two_clocks/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
D-Flipflop with two clocks
2-
+++++++++++++++++++++++++++++++++++
2+
++++++++++++++++++++++++++
33

44
``input wire c1`` and ``input wire c2`` should be detected as clocks because they drive the flip flop.
55

0 commit comments

Comments
 (0)