File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
language_server/src/robotcode/language_server
robot/src/robotcode/robot/config Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 31903190 },
31913191 "detached" : {
31923192 "default" : null ,
3193- "description" : " The profile should be detached.\"\ n Detached means it is not inherited from the main profile.\n " ,
3193+ "description" : " The profile should be detached.\n Detached means it is not inherited from the main profile.\n " ,
31943194 "title" : " Detached" ,
31953195 "type" : [
31963196 " boolean" ,
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments