Skip to content

Commit 502db26

Browse files
committed
More Acrolinx suggestions
1 parent 4da9f17 commit 502db26

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-functions/functions-bindings-warmup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The following considerations apply when using a warmup trigger:
2222
* There can be only one warmup trigger function per function app, and it can't be invoked after the instance is already running.
2323
* The warmup trigger is only called during scale-out operations, not during restarts or other nonscaling startups. Make sure your logic can load all required dependencies without relying on the warmup trigger. Lazy loading is a good pattern to achieve this goal.
2424
* Dependencies created by warmup trigger should be shared with other functions in your app. To learn more, see [Static clients](manage-connections.md#static-clients).
25-
* If the [built-in authentication](../app-service/overview-authentication-authorization.md) (aka Easy Auth) is used, [HTTPS Only](../app-service/configure-ssl-bindings.md#enforce-https) should be enabled for the warmup trigger to get invoked.
25+
* If the [built-in authentication](../app-service/overview-authentication-authorization.md) (also known as Easy Auth) is used, [HTTPS Only](../app-service/configure-ssl-bindings.md#enforce-https) should be enabled for the warmup trigger to get invoked.
2626

2727
## Example
2828

@@ -143,7 +143,7 @@ app.warmup('warmup', {
143143
```
144144

145145
# [Model v3](#tab/nodejs-v3)
146-
TypeScript samples are not documented for model v3.
146+
TypeScript samples aren't documented for model v3.
147147

148148
::: zone-end
149149
::: zone pivot="programming-language-powershell"
@@ -169,7 +169,7 @@ PowerShell example code pending.
169169

170170
The following example shows a warmup trigger in a *function.json* file and a [Python function](functions-reference-python.md) that runs on each new instance when it'is added to your app.
171171

172-
Your function must be named `warmup` (case-insensitive) and there may only be one warmup function per app.
172+
Your function must be named `warmup` (case-insensitive) and there can only be one warmup function per app.
173173

174174
Here's the *function.json* file:
175175

@@ -218,7 +218,7 @@ Use the `WarmupTrigger` attribute to define the function. This attribute has no
218218
::: zone pivot="programming-language-java"
219219
## Annotations
220220

221-
Warmup triggers do not require annotations. Just use a name of `warmup` (case-insensitive) for the `FunctionName` annotation.
221+
Warmup triggers don't require annotations. Just use a name of `warmup` (case-insensitive) for the `FunctionName` annotation.
222222

223223
::: zone-end
224224
::: zone pivot="programming-language-javascript,programming-language-typescript"

0 commit comments

Comments
 (0)