Skip to content

Commit 0fa4b8a

Browse files
committed
UG: Fix table layout and enhance example a bit
1 parent 5dd8ca2 commit 0fa4b8a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/userguide/src/ExtendingRobotFramework/CreatingTestLibraries.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1394,13 +1394,13 @@ case-insensitive.
13941394
+-------------+---------------+------------+----------------------------------------------------------------+--------------------------------------+
13951395
| Enum_ | | | The specified type must be an enumeration (a subclass of | .. sourcecode:: python |
13961396
| | | | Enum_) and arguments themselves must match its members. | |
1397-
| | | | Starting from RF 3.2.2, matching members is case-, underscore- | class Color(Enum): |
1398-
| | | | and whitespace-insensitive. | RED = 1 |
1399-
| | | | | GREEN = 2 |
1400-
| | | | | DARKGREEN = 3 |
1397+
| | | | | class Color(Enum): |
1398+
| | | | Starting from RF 3.2.2, matching members is case-, space- | RED = 1 |
1399+
| | | | and underscore-insensitive. | GREEN = 2 |
1400+
| | | | | DARK_GREEN = 3 |
14011401
| | | | | |
14021402
| | | | | | `GREEN` (Color.GREEN) |
1403-
| | | | | | `Dark Green` (Color.DARKGREEN) |
1403+
| | | | | | `Dark Green` (Color.DARK_GREEN) |
14041404
+-------------+---------------+------------+----------------------------------------------------------------+--------------------------------------+
14051405
| NoneType_ | | | String `NONE` (case-insensitively) is converted to `None` | | `None` |
14061406
| | | | object, other values are passed as-is. Mainly relevant when | |

0 commit comments

Comments
 (0)