Skip to content

Commit

Permalink
feat: deprecated function
Browse files Browse the repository at this point in the history
  • Loading branch information
lightumcc committed Mar 25, 2024
1 parent 5884c9b commit ddc0c65
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cpc-interpreter-extension",
"displayName": "CAIE Pseudocode",
"description": "A VSCode language support extension of CAIE PseudoCode",
"version": "0.1.7",
"version": "0.1.8",
"publisher": "CreatechStudioShanghaiInc",
"icon": "image/icon.png",
"main": "src/extension.ts",
Expand Down
8 changes: 4 additions & 4 deletions src/snippets.json
Original file line number Diff line number Diff line change
Expand Up @@ -245,19 +245,19 @@
},
"Lower Case": {
"prefix": [
"LCASE"
"TO_LOWER"
],
"body": [
"LCASE(${1:char})"
"TO_LOWER(${1:char})"
],
"description": "Convert a character to lower case."
},
"Upper Case": {
"prefix": [
"UCASE"
"TO_UPPER"
],
"body": [
"UCASE(${1:char})"
"TO_UPPER(${1:char})"
],
"description": "Convert a character to upper case."
},
Expand Down

0 comments on commit ddc0c65

Please sign in to comment.