Skip to content

Commit 29fbf33

Browse files
author
craigcaseyMSFT
committed
changes after review input
1 parent 3846a7a commit 29fbf33

4 files changed

+11
-11
lines changed

docs/xml-tools/sorting-filtering-and-grouping-xml-schema-explorer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ This topic describes the options that are available through the **Sorting, Filte
7373

7474
The **Document Order** option is available when the **Show Schema Files** option is selected. When **Document Order** is selected, global nodes are displayed in the order in which they appear in the schema file.
7575

76-
## Persisting sort/Filter options
76+
## Persisting sort/filter options
7777

7878
The sorting, filtering, and grouping options are saved to the registry for each user, no matter which solution or files were open when the settings were changed.

docs/xml-tools/walkthrough-debug-an-xslt-style-sheet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ The **XSL Output** window displays the output of the XSL transformation. This wi
9494

9595
The following two files are used by the walkthrough.
9696

97-
### *belowAvg.xsl*
97+
### belowAvg.xsl
9898

9999
```xml
100100
<?xml version='1.0'?>
@@ -117,7 +117,7 @@ The following two files are used by the walkthrough.
117117
</xsl:stylesheet>
118118
```
119119

120-
### *books.xml*
120+
### books.xml
121121

122122
```xml
123123
<?xml version='1.0'?>

docs/xml-tools/walkthrough-using-xml-editor-features.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ manager: douge
1111
ms.workload:
1212
- "multiple"
1313
---
14-
# Walkthrough: Using XML editor features
14+
# Walkthrough: Use XML editor features
1515

1616
The steps in this walkthrough show you how to create a new XML document. The walkthrough also uses some of the features of the XML Editor that make it valuable for XML authoring.
1717

@@ -66,23 +66,23 @@ The steps in this walkthrough show you how to create a new XML document. The wal
6666

6767
5. Type `>` to close the tag.
6868

69-
6. The editor adds the end tag. The end tag is added with a wavy underline indicating a validation error. The **ToolTip** displays the message: The element 'employee' has incomplete content. Expected 'ID'.
69+
6. The editor adds the end tag. The end tag is added with a wavy underline indicating a validation error. The **ToolTip** displays the message: **The element 'employee' has incomplete content. Expected 'ID'**.
7070

7171
7. Type `<` and select **ID** from the member list. Then type `>`.
7272

7373
The editor adds the XML element, `<ID></ID>`, and positions the cursor after the ID start tag.
7474

7575
8. Type **abc**.
7676

77-
The **abc** text has a wavy underline. The **ToolTip** displays the message: The 'ID' element has an invalid value according to its data type.
77+
The **abc** text has a wavy underline. The **ToolTip** displays the message: **The 'ID' element has an invalid value according to its data type**.
7878

7979
9. Right-click on the ID element and select **Go To Definition**.
8080

8181
The editor opens the *hireDate.xsd* file in a new document window and positions the cursor on the ID schema element definition.
8282

8383
10. Return to the XML file, and replace the **abc** text with **123**.
8484

85-
The wavy underline and **ToolTip** are cleared under the ID element value. The **ToolTip** for the employee end tag now displays the message: The element 'employee' has incomplete content. Expected 'hire-date'.
85+
The wavy underline and **ToolTip** are cleared under the ID element value. The **ToolTip** for the employee end tag now displays the message: **The element 'employee' has incomplete content. Expected 'hire-date'**.
8686

8787
11. Place the cursor after the ID end tag, type in `<`, select **hire-date** from the member list, and then type in `>`.
8888

@@ -104,7 +104,7 @@ The steps in this walkthrough show you how to create a new XML document. The wal
104104

105105
2. Enter the file name and location for the XML document and click **Save**.
106106

107-
## *hireDate.xsd* file
107+
## hireDate.xsd file
108108
The following schema file is used by the walkthrough.
109109

110110
```xml

docs/xml-tools/walkthrough-using-xslt-hierarchy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: gewarren
88
ms.author: gewarren
99
manager: douge
1010
---
11-
# Walkthrough: Using XSLT hierarchy
11+
# Walkthrough: Use XSLT hierarchy
1212

1313
The XSLT Hierarchy tool simplifies many XML development tasks. An XSLT style sheet often uses `includes` and `imports` instructions. Compilation starts from the principal style sheet, but when you see an error as a result of compiling an XSLT style sheet, the error may come from a different source than the principal style sheet. Fixing the error or editing the style sheet may require access to included or imported style sheets. Stepping through the style sheet in the debugger may open included and imported style sheets, and you may want to add a breakpoint at some point in one or more of the included style sheets.
1414

@@ -42,7 +42,7 @@ The example in this topic demonstrates debugging in a referenced style sheet.
4242
</COLLECTION>
4343
```
4444

45-
1. Add the following *`xslincludefile.xsl`*:
45+
1. Add the following *xslincludefile.xsl*:
4646

4747
```xml
4848
<?xml version='1.0'?>
@@ -65,7 +65,7 @@ The example in this topic demonstrates debugging in a referenced style sheet.
6565
</xsl:stylesheet>
6666
```
6767

68-
3. Add the following *`xslinclude.xsl`* file:
68+
3. Add the following *xslinclude.xsl* file:
6969

7070
```xml
7171
<?xml version='1.0'?>

0 commit comments

Comments
 (0)