You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/fsharp/FSComp.txt
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -24,9 +24,6 @@ buildUnexpectedTypeArgs,"The non-generic type '%s' does not expect any type argu
24
24
returnUsedInsteadOfReturnBang,"Consider using 'return!' instead of 'return'."
25
25
yieldUsedInsteadOfYieldBang,"Consider using 'yield!' instead of 'yield'."
26
26
tupleRequiredInAbstractMethod,"\nA tuple type is required for one or more arguments. Consider wrapping the given arguments in additional parentheses or review the definition of the interface."
27
-
notAFunction,"This value is not a function and cannot be applied."
28
-
notAFunctionButMaybeIndexer,"This value is not a function and cannot be applied. Did you intend to call obj.[index] instead of obj[index]?"
29
-
notAFunctionButMaybeDeclaration,"This value is not a function and cannot be applied. Did you forget to terminate a declaration?"
30
27
203,buildInvalidWarningNumber,"Invalid warning number '%s'"
31
28
204,buildInvalidVersionString,"Invalid version string '%s'"
32
29
205,buildInvalidVersionFile,"Invalid version file '%s'"
@@ -1413,3 +1410,6 @@ keywordDescriptionUntypedQuotation,"Delimits a untyped code quotation."
1413
1410
3216,itemNotFoundDuringDynamicCodeGen,"%s '%s' not found in assembly '%s'. A possible cause may be a version incompatibility. You may need to explicitly reference the correct version of this assembly to allow all referenced components to use the correct version."
1414
1411
3216,itemNotFoundInTypeDuringDynamicCodeGen,"%s '%s' not found in type '%s' from assembly '%s'. A possible cause may be a version incompatibility. You may need to explicitly reference the correct version of this assembly to allow all referenced components to use the correct version."
1415
1412
descriptionWordIs,"is"
1413
+
notAFunction,"This value is not a function and cannot be applied."
1414
+
3217,notAFunctionButMaybeIndexer,"This value is not a function and cannot be applied. Did you intend to call obj.[index] instead of obj[index]?"
1415
+
notAFunctionButMaybeDeclaration,"This value is not a function and cannot be applied. Did you forget to terminate a declaration?"