Skip to content

Commit ee4cf54

Browse files
Apply suggestions from code review
Co-authored-by: John Murray <[email protected]>
1 parent 1f3868b commit ee4cf54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@
747747
"default": false
748748
},
749749
"objectscript.export.map": {
750-
"markdownDescription": "Map file names before export with regexp pattern as a key, and replacement as a value\n (e.g. ```JSON\n {\n \"%(.*)\": \"_$1\"\n}\n``` for % class or routines replaced to be with underscore instead).",
750+
"markdownDescription": "Map file names before export, with regexp pattern as a key and replacement as a value (e.g. `{ \"%(.*)\": \"_$1\" }` to make % classes or routines use underscore prefix instead).",
751751
"type": "object",
752752
"default": {},
753753
"examples": [
@@ -762,14 +762,14 @@
762762
},
763763
"properties": {
764764
"%(.*)": {
765-
"description": "Catch any % items, with value as `_$1` will replace `%` to `_`",
765+
"description": "Catch any % items. Set value to `_$1` to replace `%` prefix with `_`",
766766
"type": "string",
767767
"examples": [
768768
"_$1"
769769
]
770770
},
771771
"(.*)": {
772-
"description": "Complete pattern, use `$1` to get matched value",
772+
"description": "Match everything. Set value to `$1` to leave unchanged",
773773
"type": "string",
774774
"examples": [
775775
"$1"

0 commit comments

Comments
 (0)