File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
duckscript_sdk/src/sdk/std Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -415,7 +415,7 @@ print "hello world"
415415# Print with style/color values
416416print --style underline --color red My Bold Red Text
417417echo
418- print -s underline -s bold -c bright_green -bgc red Hellow World
418+ print -s underline -s bold -c bright_green -bgc red Hello World
419419echo
420420```
421421
@@ -455,7 +455,7 @@ println "hello world"
455455
456456# Print with style/color values
457457println --style underline --color red My Bold Red Text
458- println -s underline -s bold -c bright_green -bgc red Hellow World
458+ println -s underline -s bold -c bright_green -bgc red Hello World
459459```
460460
461461
@@ -6355,7 +6355,7 @@ handle = split text pattern
63556355```
63566356
63576357Splits the provided text based on the provided pattern and return a handle the
6358- created array with all the splitted values.
6358+ created array with all the split values.
63596359
63606360### Parameters
63616361
Original file line number Diff line number Diff line change @@ -100,10 +100,10 @@ impl Display for ScriptError {
100100 format_error_message ( formatter, & meta_info, "invalid quotes location" )
101101 }
102102 Self :: EmptyLabel ( ref meta_info) => {
103- format_error_message ( formatter, & meta_info, "empty lable found" )
103+ format_error_message ( formatter, & meta_info, "empty label found" )
104104 }
105105 Self :: UnknownPreProcessorCommand ( ref meta_info) => {
106- format_error_message ( formatter, & meta_info, "unknow preprocessor command" )
106+ format_error_message ( formatter, & meta_info, "unknown preprocessor command" )
107107 }
108108 }
109109 }
Original file line number Diff line number Diff line change @@ -30,6 +30,6 @@ print "hello world"
3030# Print with style/color values
3131print --style underline --color red My Bold Red Text
3232echo
33- print -s underline -s bold -c bright_green -bgc red Hellow World
33+ print -s underline -s bold -c bright_green -bgc red Hello World
3434echo
3535```
Original file line number Diff line number Diff line change @@ -27,5 +27,5 @@ println "hello world"
2727
2828# Print with style/color values
2929println --style underline --color red My Bold Red Text
30- println -s underline -s bold -c bright_green -bgc red Hellow World
30+ println -s underline -s bold -c bright_green -bgc red Hello World
3131```
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ handle = split text pattern
33```
44
55Splits the provided text based on the provided pattern and return a handle the
6- created array with all the splitted values.
6+ created array with all the split values.
77
88### Parameters
99
You can’t perform that action at this time.
0 commit comments