Skip to content

Commit 3ebe9f1

Browse files
committed
chore: fix some typos
1 parent 3b83f89 commit 3ebe9f1

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

etc/robot.toml.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3190,7 +3190,7 @@
31903190
},
31913191
"detached": {
31923192
"default": null,
3193-
"description": "The profile should be detached.\"\nDetached means it is not inherited from the main profile.\n",
3193+
"description": "The profile should be detached.\nDetached means it is not inherited from the main profile.\n",
31943194
"title": "Detached",
31953195
"type": [
31963196
"boolean",

packages/language_server/src/robotcode/language_server/cli.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def run_server(
3636

3737
@click.command(
3838
add_help_option=True,
39-
epilog='Use "-- --help" to see `robot` help.',
4039
)
4140
@add_options(
4241
*server_options(

packages/robot/src/robotcode/robot/config/model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ class Expression:
120120
121121
Examples:
122122
```toml
123-
if = "re.match(r'^\\d+$', environ.get('TEST_VAR', ''))"
124-
if = "platform.system() == 'Linux'"
123+
expr = "re.match(r'^\\d+$', environ.get('TEST_VAR', ''))"
124+
expr = "platform.system() == 'Linux'"
125125
```
126126
""",
127127
no_default=True,

0 commit comments

Comments
 (0)