Skip to content

Commit a8a3f42

Browse files
author
dksimpson
committed
Update screenshots with new names
1 parent 1134045 commit a8a3f42

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

articles/azure-functions/functions-create-first-azure-function.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Now, you can run the new function by sending an HTTP request.
5353

5454
![Copy the function URL from the Azure portal](./media/functions-create-first-azure-function/function-app-develop-tab-testing.png)
5555

56-
1. Paste the function URL into your browser's address bar. Add the query string value `&name=<yourname>` to the end of this URL and press Enter to run the request.
56+
1. Paste the function URL into your browser's address bar. Add the query string value *&name=&lt;your_name&gt;* to the end of this URL and press Enter to run the request.
5757

5858
The following example shows the response in the browser:
5959

articles/azure-functions/functions-create-your-first-function-visual-studio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ Before you can publish your project, you must have a function app in your Azure
5252

5353
## Test your function in Azure
5454

55-
1. Copy the base URL of the function app from the **Publish** profile page. Replace the `localhost:port` portion of the URL you used to test the function locally with the new base URL. Append the query string `?name=<YOUR_NAME>` to this URL and run the request.
55+
1. Copy the base URL of the function app from the **Publish** profile page. Replace the *localhost:port* portion of the URL you used to test the function locally with the new base URL. Append the query string *?name=&lt;YOUR_NAME&gt;* to this URL and run the request.
5656

5757
The URL that calls your HTTP triggered function is in the following format:
5858

59-
http://<APP_NAME>.azurewebsites.net/api/<FUNCTION_NAME>?name=<YOUR_NAME>
59+
*http://<APP_NAME>.azurewebsites.net/api/<FUNCTION_NAME>?name=<YOUR_NAME>*
6060

6161
2. Paste this new URL for the HTTP request into your browser's address bar. The following image shows the response in the browser to the remote GET request returned by the function:
6262

4.59 KB
Loading
4.6 KB
Loading
-4.08 KB
Loading

includes/functions-run-function-test-local-vs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.author: glenga
1212

1313
![Azure local runtime](./media/functions-run-function-test-local-vs/functions-debug-local-vs.png)
1414

15-
3. Paste the URL for the HTTP request into your browser's address bar. Append the query string `?name=<YOUR_NAME>` to this URL and execute the request. The following image shows the response in the browser to the local GET request returned by the function:
15+
3. Paste the URL for the HTTP request into your browser's address bar. Append the query string *?name=&lt;YOUR_NAME&gt;* to this URL and execute the request. The following image shows the response in the browser to the local GET request returned by the function:
1616

1717
![Function localhost response in the browser](./media/functions-run-function-test-local-vs/functions-run-browser-local-vs.png)
1818

0 commit comments

Comments
 (0)