Skip to content

Commit 5606c09

Browse files
author
Glenn Gailey
committed
tweak code block
1 parent 0ef5128 commit 5606c09

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

articles/azure-functions/functions-add-output-binding-storage-queue-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ You can view the queue in the [Azure portal](../storage/queues/storage-quickstar
171171
az storage message peek --queue-name outqueue -o tsv --query [].{Message:content} > %TEMP%out.b64 && certutil -decode -f %TEMP%out.b64 %TEMP%out.txt > NUL && type %TEMP%out.txt && del %TEMP%out.b64 %TEMP%out.txt /q
172172
```
173173
174-
This script uses certutil to decode the base64-encoded message collection from a local temp file. If there's no output, try removing `> NUL` from the script and stop suppressing certutil message, in case there's an error.
174+
This script uses certutil to decode the base64-encoded message collection from a local temp file. If there's no output, try removing `> NUL` from the script to stop suppressing certutil output, in case there's an error.
175175
176176
---
177177

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ If you see the error, "Can't find app with name ...", wait a few seconds and try
318318
319319
The publish command shows results similar to the following output (truncated for simplicity):
320320
321-
<pre><code>
321+
<pre>
322322
...
323323
324324
Getting site publishing info...
@@ -333,7 +333,7 @@ Syncing triggers...
333333
Functions in msdocs-azurefunctions-qs:
334334
HttpExample - [httpTrigger]
335335
Invoke url: https://msdocs-azurefunctions-qs.azurewebsites.net/api/httpexample?code=KYHrydo4GFe9y0000000qRgRJ8NdLFKpkakGJQfC3izYVidzzDN4gQ==
336-
</code></pre>
336+
</pre>
337337
338338
## Invoke the function on Azure
339339

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ npm start
2525

2626
Toward the end of the output, the following lines should appear:
2727

28-
<pre><code>
28+
<pre>
2929
...
3030

3131
Now listening on: http://0.0.0.0:7071
@@ -36,9 +36,9 @@ Http Functions:
3636
HttpExample: [GET,POST] http://localhost:7071/api/HttpExample
3737
...
3838

39-
</code></pre>
39+
</pre>
4040

41-
>[!NOTE]
41+
>[!NOTE]
4242
> If HttpExample doesn't appear as shown below, you likely started the host from within the *HttpExample* folder. In that case, use **Ctrl**+**C** to stop the host, navigate to the parent *LocalFunctionProj* folder, and run the previous command again.
4343
4444
Copy the URL of your `HttpExample` function from this output to a browser and append the query string `?name=<your-name>`, making the full URL like `http://localhost:7071/api/HttpExample?name=Functions`. The browser should display a message like `Hello Functions`:

0 commit comments

Comments
 (0)