Skip to content

Commit 6ef39c7

Browse files
committed
Tag fixes.
1 parent 7d2134e commit 6ef39c7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/azure-functions/functions-create-function-app-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Next, create a function in the new function app.
5959

6060
:::image type="content" source="./media/functions-create-first-azure-function/function-app-develop-tab-testing.png" alt-text="Screenshot of Copy the function URL window from the Azure portal.":::
6161

62-
1. Paste the function URL into your browser's address bar. Add the query string value `?name=<your_name>` to the end of this URL and press <kbd>Enter</kbd> to run the request. The browser must display a response message that echoes back your query string value.
62+
1. Paste the function URL into your browser's address bar. Add the query string value `?name=<your_name>` to the end of this URL and press Enter to run the request. The browser must display a response message that echoes back your query string value.
6363

6464
If the request URL included an [access key](functions-bindings-http-webhook-trigger.md#authorization-keys) (`?code=...`), it means you selected **Function** instead of **Anonymous** access level when creating the function. In this case, you must instead append `&name=<your_name>`.
6565

articles/azure-functions/functions-create-function-linux-custom-image.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Follow the prompts and provide the following information:
128128
| **version** | `1.0-SNAPSHOT` | Select the default value. |
129129
| **package** | `com.fabrikam.functions` | A value that is the Java package for the generated function code. Use the default. |
130130

131-
Type `Y` or press <kbd>Enter</kbd> to confirm.
131+
Type `Y` or press Enter to confirm.
132132

133133
Maven creates the project files in a new folder named _artifactId_, which in this example is `fabrikam-functions`.
134134
::: zone-end
@@ -291,7 +291,7 @@ func start
291291

292292
After you see the `HttpExample` endpoint appear in the output, navigate to `http://localhost:7071/api/HttpExample?name=Functions`. The browser must display a "hello" message that echoes back `Functions`, the value supplied to the `name` query parameter.
293293

294-
Press <kbd>Ctrl + C</kbd> to stop the host.
294+
Press **Ctrl**+**C** to stop the host.
295295

296296
## Build the container image and test locally
297297

@@ -343,7 +343,7 @@ After the image starts in the local container, browse to `http://localhost:8080/
343343
After the image starts in the local container, browse to `http://localhost:8080/api/HttpExample?name=Functions`, which must display the same "hello" message as before. Because the HTTP triggered function you created uses anonymous authorization, you can call the function running in the container without having to obtain an access key. For more information, see [authorization keys].
344344
::: zone-end
345345

346-
After verifying the function app in the container, press <kbd>Ctrl + C</kbd> to stop the docker.
346+
After verifying the function app in the container, press **Ctrl**+**C** to stop the docker.
347347

348348
## Push the image to Docker Hub
349349

0 commit comments

Comments
 (0)