Skip to content

Commit

Permalink
Fix typo in layout_styles.rst (#1374)
Browse files Browse the repository at this point in the history
Caught a couple typos while reading the docs.

1:

Take this line:

```
If you need to customize the css definitions, there are twi ways of doing it:
```

and correct it:

```
If you need to customize the css definitions, there are two ways of doing it:
```

2:

Correct this line:

```
<table class="need needs_grid_simple needs_layout_complex needes_style_blue docutils" id="SPEC_1">
```

to this:

```
<table class="need needs_grid_simple needs_layout_complex needs_style_blue docutils" id="SPEC_1">
```
  • Loading branch information
interifter authored Dec 23, 2024
1 parent 3ba2d9e commit 9c5a6db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/layout_styles.rst
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ By setting a style to ``None``, no style is set and the normal Sphinx-Needs styl
Own style configuration
~~~~~~~~~~~~~~~~~~~~~~~~

If you need to customize the css definitions, there are twi ways of doing it:
If you need to customize the css definitions, there are two ways of doing it:

* Provide a css file by using :ref:`needs_css`
* Set own css on sphinx level
Expand Down Expand Up @@ -588,7 +588,7 @@ HTML output
For **html output** the used layout and style names are added as css-class to the need table object.
Beside this also the used grid system is added::

<table class="need needs_grid_simple needs_layout_complex needes_style_blue docutils" id="SPEC_1">
<table class="need needs_grid_simple needs_layout_complex needs_style_blue docutils" id="SPEC_1">

The above line contains the following css classes:

Expand Down

0 comments on commit 9c5a6db

Please sign in to comment.