Skip to content

Commit 57affcf

Browse files
v-thpramairaw
andcommitted
US 1583733 Add missing language IDs - Part2 (#15843)
* part2-batch1-1 * part2-batch1-2 * Apply suggestions from code review Co-Authored-By: Maira Wenzel <[email protected]> * part2-batch1-3 * Update exception-class-and-properties.md * Apply suggestions from code review Co-Authored-By: Maira Wenzel <[email protected]>
1 parent 35e6af6 commit 57affcf

13 files changed

+18
-20
lines changed

docs/architecture/cloud-native/azure-monitor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ No modern application would be complete without some artificial intelligence or
2929

3030
Application Insights provides a powerful query language called Kusto that can be used to find records, summarize them, and even plot charts. For instance, this query will locate all the records for the month of November 2007, group them by state, and plot the top 10 as a pie chart.
3131

32-
```
32+
```kusto
3333
StormEvents
3434
| where StartTime >= datetime(2007-11-01) and StartTime < datetime(2007-12-01)
3535
| summarize count() by State

docs/core/tools/telemetry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ If the .NET Core CLI/SDK crashes, it collects the name of the exception and stac
108108

109109
The following example shows the kind of data that is collected:
110110

111-
```
111+
```console
112112
System.IO.IOException
113113
at System.ConsolePal.WindowsConsoleStream.Write(Byte[] buffer, Int32 offset, Int32 count)
114114
at System.IO.StreamWriter.Flush(Boolean flushStream, Boolean flushEncoder)

docs/core/tools/troubleshoot-usage-issues.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ When a .NET Core tool fails to run, most likely you ran into one of the followin
2020

2121
If the executable file isn't found, you'll see a message similar to the following:
2222

23-
```
23+
```console
2424
Could not execute because the specified command or file was not found.
2525
Possible reasons for this include:
2626
* You misspelled a built-in dotnet command.
@@ -96,7 +96,7 @@ If you install the .NET Core SDK to a non-default location, you need to set the
9696

9797
There are a number of reasons the installation of a .NET Core global or local tool may fail. When the tool installation fails, you'll see a message similar to following one:
9898

99-
```
99+
```console
100100
Tool '{0}' failed to install. This failure may have been caused by:
101101

102102
* You are attempting to install a preview release and did not use the --version option to specify the version.

docs/framework/interop/how-to-generate-interop-assemblies-from-type-libraries.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ The [Type Library Importer (Tlbimp.exe)](../tools/tlbimp-exe-type-library-import
2323
## Example
2424
The following command produces the Loanlib.dll assembly in the `Loanlib` namespace.
2525

26-
```
26+
```console
2727
tlbimp Loanlib.tlb
2828
```
2929

3030
The following command produces an interop assembly with an altered name (LOANLib.dll).
3131

32-
```
32+
```console
3333
tlbimp LoanLib.tlb /out: LOANLib.dll
3434
```
3535

docs/framework/wcf/samples/custom-message-encoder-custom-text-encoder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The custom encoder implementation consists of a message encoder factory, a messa
3232

3333
1. Install ASP.NET 4.0 using the following command.
3434

35-
```
35+
```console
3636
%windir%\Microsoft.NET\Framework\v4.0.XXXXX\aspnet_regiis.exe /i /enable
3737
```
3838

docs/framework/wcf/samples/extending-control-over-error-handling-and-reporting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ catch (Exception e)
114114

115115
When you run the sample, the operation requests and responses are displayed in the client console window. You see the division by zero and the argument-out-of-range conditions being reported as faults. Press ENTER in the client window to shut down the client.
116116

117-
```
117+
```console
118118
Add(15,3) = 18
119119
Subtract(145,76) = 69
120120
Multiply(9,81) = 729

docs/framework/wpf/advanced/safe-constructor-patterns-for-dependencyobjects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public MyClass : SomeBaseClass {
9090
#### Non-default (convenience) constructors, which do match base signatures
9191
Instead of calling the base constructor with the same parameterization, again call your own class' parameterless constructor. Do not call the base initializer; instead you should call `this()`. Then reproduce the original constructor behavior by using the passed parameters as values for setting the relevant properties. Use the original base constructor documentation for guidance in determining the properties that the particular parameters are intended to set:
9292

93-
```
93+
```csharp
9494
public MyClass : SomeBaseClass {
9595
public MyClass(object toSetProperty1) : this() {
9696
// Class initialization NOT done by default.

docs/framework/xaml-services/x-key-directive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Uniquely identifies elements that are created and referenced in a XAML-defined d
8080

8181
### XAML Element Usage (XAML 2009 only)
8282

83-
```
83+
```xaml
8484
<object>
8585
<x:Key>
8686
keyObject

docs/fsharp/language-reference/loops-for-to-expression.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Although technically an expression, `for...to` is more like a traditional statem
2525

2626
The output of the previous code is as follows.
2727

28-
```
28+
```console
2929
1 2 3 4 5 6 7 8 9 10
3030
10 9 8 7 6 5 4 3 2 1
3131
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

docs/spark/how-to-guides/debug.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spark-submit \
2424

2525
When you run the command, you see the following output:
2626

27-
```
27+
```console
2828
***********************************************************************
2929
* .NET Backend running debug mode. Press enter to exit *
3030
***********************************************************************

0 commit comments

Comments
 (0)