Skip to content

Commit 5c50daa

Browse files
authored
fix typos in docs (#136)
1 parent a3b5526 commit 5c50daa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Call robotidy with path(s) to file/directory with robot files:
4747
```
4848
robotidy tests
4949
robotidy test.robot
50-
robotidy tests/resources test.robot
50+
robotidy tests/resources test.robot
5151
```
5252

5353
All command line options can be displayed in help message by executing:

docs/source/overview.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Call robotidy with path(s) to file/directory with robot files::
2626

2727
robotidy tests
2828
robotidy test.robot
29-
robotidy tests/resources test.robot
29+
robotidy tests/resources test.robot
3030

3131
All command line options can be displayed in help message by executing::
3232

docs/source/transformers/NormalizeAssignments.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ run separately with::
1111

1212
robotidy --transform NormalizeAssignments src
1313

14-
In this code most common is no equal sign at all. It should remove ``=`` signs from the all lines:
14+
In this code most common is no equal sign at all. It should remove ``=`` signs from all lines:
1515

1616
.. tabs::
1717

robotidy/transformers/NormalizeAssignments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class NormalizeAssignments(ModelTransformer):
1515
Normalize assignments. By default it detects most common assignment sign
1616
and apply it to every assignment in given file.
1717
18-
In this code most common is no equal sign at all. We should remove ``=`` signs from the all lines::
18+
In this code most common is no equal sign at all. We should remove ``=`` signs from all lines::
1919
2020
*** Variables ***
2121
${var} = ${1}

0 commit comments

Comments
 (0)