Skip to content

Commit b65a0fe

Browse files
committed
clean up includes
1 parent 806d5c4 commit b65a0fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

includes/functions-nodejs-model-considerations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ ms.custom: include file
1212
## Considerations
1313

1414
- The Node.js "programming model" should not be confused with the Azure Functions "runtime".
15-
- _**Programming model**_: The part of Azure Functions specific to JavaScript and TypeScript that governs how you author your code. For example it determines how you register a function, get a function's input, or interact with the invocation context.
15+
- _**Programming model**_: The part of Azure Functions specific to JavaScript and TypeScript that governs how you author your code.
1616
- _**Runtime**_: The central part of Azure Functions that governs underlying behavior shared across all languages.
17-
- The Node.js programming model is versioned independently of the Azure Functions [runtime](./functions-versions.md). The programming model version is strictly tied to the version of the [`@azure/functions`](https://www.npmjs.com/package/@azure/functions) npm package. Both the runtime and the programming model use "4" as their latest major version, but that is purely a coincidence.
17+
- The programming model version is strictly tied to the version of the [`@azure/functions`](https://www.npmjs.com/package/@azure/functions) npm package, and is versioned independently of the [runtime](../articles/azure-functions/functions-versions.md). Both the runtime and the programming model use "4" as their latest major version, but that is purely a coincidence.
1818
- Keep in mind that you can't mix the v3 and v4 programming models in the same function app. As soon as you register one v4 function in your app, any v3 functions registered in `function.json` files will be ignored.
1919

2020
> [!NOTE]

0 commit comments

Comments
 (0)