Skip to content

Commit ef1bcd7

Browse files
authored
fix spelling per Acrolinx report, remove locale
1 parent 258f4b3 commit ef1bcd7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-functions/functions-reference-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ ID of the current function invocation.
271271

272272
## Global variables
273273

274-
It is not gauranteed that the state of your app will be preserved for future executions. However, the Azure Functions runtime often reuses the same process for multiple executions of the same app. In order to cache the results of an expensive computation, declare it as a global variable.
274+
It is not guaranteed that the state of your app will be preserved for future executions. However, the Azure Functions runtime often reuses the same process for multiple executions of the same app. In order to cache the results of an expensive computation, declare it as a global variable.
275275

276276
```python
277277
CACHED_DATA = None
@@ -317,7 +317,7 @@ func azure functionapp publish <app name> --build-native-deps
317317

318318
Underneath the covers, Core Tools will use docker to run the [mcr.microsoft.com/azure-functions/python](https://hub.docker.com/r/microsoft/azure-functions/) image as a container on your local machine. Using this environment, it'll then build and install the required modules from source distribution, before packaging them up for final deployment to Azure.
319319

320-
To build your dependencies and publish using a continuous delivery (CD) system, [use Azure DevOps Piplines](https://docs.microsoft.com/en-us/azure/azure-functions/functions-how-to-azure-devops).
320+
To build your dependencies and publish using a continuous delivery (CD) system, [use Azure DevOps Pipelines](https://docs.microsoft.com/azure/azure-functions/functions-how-to-azure-devops).
321321

322322
## Unit Testing
323323

0 commit comments

Comments
 (0)