Skip to content

Commit be99bcb

Browse files
committed
fix links
1 parent 7bcdbc6 commit be99bcb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

articles/azure-functions/functions-core-tools-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ func host start
164164
| **`--timeout`** | The timeout for the Functions host to start, in seconds. Default: 20 seconds.|
165165
| **`--useHttps`** | Bind to `https://localhost:{port}` rather than to `http://localhost:{port}`. By default, this option creates a trusted certificate on your computer.|
166166

167-
In version 1.x, you can also use the [`func run` command](#func-run) to run a specific function and pass test data to it.
167+
In version 1.x, you can also use the [`func run`](#func-run) command to run a specific function and pass test data to it.
168168

169169
---
170170

@@ -514,7 +514,7 @@ Deploys a Functions project as a custom docker container to a Kubernetes cluster
514514
func kubernetes deploy
515515
```
516516

517-
This command builds your project as a custom container and publishes it to a Kubernetes cluster. Custom containers must have a Dockerfile. To create an app with a Dockerfile, use the `--dockerfile` option with the [`func init` command](#func-init).
517+
This command builds your project as a custom container and publishes it to a Kubernetes cluster. Custom containers must have a Dockerfile. To create an app with a Dockerfile, use the `--dockerfile` option with the [`func init`](#func-init) command.
518518

519519
The following Kubernetes deployment options are available:
520520

articles/azure-functions/functions-run-local.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ This example creates a Queue Storage trigger named `MyQueueTrigger`:
310310
func new --template "Azure Queue Storage Trigger" --name MyQueueTrigger
311311
```
312312

313-
To learn more, see the [`func new` command](functions-core-tools-reference.md#func-new).
313+
To learn more, see the [`func new`](functions-core-tools-reference.md#func-new) command.
314314

315315
## <a name="start"></a>Run functions locally
316316

@@ -468,7 +468,7 @@ If you don't have these tools installed, you need to instead [get a valid access
468468
### <a name="project-file-deployment"></a>Deploy project files
469469
470470
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-powershell,programming-language-python,programming-language-typescript"
471-
To publish your local code to a function app in Azure, use the [`func azure functionapp publish publish` command](./functions-core-tools-reference.md#func-azure-functionapp-publish), as in the following example:
471+
To publish your local code to a function app in Azure, use the [`func azure functionapp publish publish`](./functions-core-tools-reference.md#func-azure-functionapp-publish) command, as in the following example:
472472
473473
```
474474
func azure functionapp publish <FunctionAppName>
@@ -505,7 +505,7 @@ The following considerations apply to this kind of deployment:
505505

506506
### Azure Container Apps deployment
507507

508-
Functions lets you deploy a [containerized function app](functions-create-container-registry.md) to an Azure Container Apps environment. For more information, see [Azure Container Apps hosting of Azure Functions](functions-container-apps-hosting.md). Use the following [`func azurecontainerapps deploy` command](./functions-core-tools-reference.md#func-azurecontainerapps-deploy) to deploy an existing container image to a Container Apps environment:
508+
Functions lets you deploy a [containerized function app](functions-create-container-registry.md) to an Azure Container Apps environment. For more information, see [Azure Container Apps hosting of Azure Functions](functions-container-apps-hosting.md). Use the following [`func azurecontainerapps deploy`](./functions-core-tools-reference.md#func-azurecontainerapps-deploy) command to deploy an existing container image to a Container Apps environment:
509509

510510
```command
511511
func azurecontainerapps deploy --name <APP_NAME> --environment <ENVIRONMENT_NAME> --storage-account <STORAGE_CONNECTION> --resource-group <RESOURCE_GROUP> --image-name <IMAGE_NAME> [--registry-password] [--registry-server] [--registry-username]
@@ -554,7 +554,7 @@ Use the following command to install a specific extension package at a specific
554554
func extensions install --package Microsoft.Azure.WebJobs.Extensions.Storage --version 5.0.0
555555
```
556556

557-
You can use this command to install any compatible NuGet package. To learn more, see the [`func extensions install` command](functions-core-tools-reference.md#func-extensions-install).
557+
You can use this command to install any compatible NuGet package. To learn more, see the [`func extensions install`](functions-core-tools-reference.md#func-extensions-install) command.
558558

559559
## Monitoring functions
560560

0 commit comments

Comments
 (0)