Skip to content

Commit fc735cb

Browse files
authored
Merge pull request #2829 from github/koesie10/fix-return-value
Fix incorrect `ReturnType` instead of `ReturnValue`
2 parents c514575 + 96a8bea commit fc735cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/ql-vscode/src/view/model-editor/MethodRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ function ModelableMethodRow(props: MethodRowProps) {
104104
onChange(method, {
105105
// If there are no arguments, we will default to "Argument[this]"
106106
input: argumentsList.length === 0 ? "Argument[this]" : "Argument[0]",
107-
output: "ReturnType",
107+
output: "ReturnValue",
108108
kind: "value",
109109
...modeledMethod,
110110
type: e.target.value as ModeledMethodType,

0 commit comments

Comments
 (0)