Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: [#9331] Substring function contains wrong tooltip information #9351

Merged
merged 7 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ export const buildInFunctionsMap: Map<string, FunctionEntity> = new Map<string,
new FunctionEntity(
['text: string', 'startIndex: number', 'length?: number'],
ReturnType.String,
'Returns characters from a string. Substring(sourceString, startPos, endPos). startPos cannot be less than 0. endPos greater than source strings length will be taken as the max length of the string.'
'Returns characters from a string. Substring(sourceString, startPos, length). startPos cannot be less than 0. A length greater than source strings length will be taken as the max length of the string.'
),
],
[
Expand Down
4 changes: 2 additions & 2 deletions extensions/azurePublish/yarn-berry.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1941,10 +1941,10 @@ __metadata:

"@bfc/built-in-functions@file:../../Composer/packages/tools/built-in-functions::locator=azurePublish%40workspace%3A.":
version: 1.0.0
resolution: "@bfc/built-in-functions@file:../../Composer/packages/tools/built-in-functions#../../Composer/packages/tools/built-in-functions::hash=0c6f19&locator=azurePublish%40workspace%3A."
resolution: "@bfc/built-in-functions@file:../../Composer/packages/tools/built-in-functions#../../Composer/packages/tools/built-in-functions::hash=c3f7bb&locator=azurePublish%40workspace%3A."
dependencies:
tslib: 2.6.2
checksum: 6e7ca8ed2cba36d4b6e1bcf50795017737c95178134c03bbb58bd45ffb510e6ef2043bc4b51708a52bb26c63033f89895de9572bb06c2d7048b2ae44945120a5
checksum: b47290f91ceb19638dcd5e88f0c74bf35d8c347d6135836b8b3909fe417a5e84db5143b5650fe416f0cb07a08ccad7283d606a6040a6b958f60070ea5445d52c
languageName: node
linkType: hard

Expand Down
Loading