Skip to content

Commit b7a88e1

Browse files
authored
Merge pull request #8419 from drewnoakes/patch-8
Remove white space within XML
2 parents 7afa28a + 9acea1b commit b7a88e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/msbuild/msbuild-targets.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ Targets group tasks together in a particular order and allow the build process t
3131
Like MSBuild properties, targets can be redefined. For example,
3232

3333
```xml
34-
<Target Name="MyTarget" >
34+
<Target Name="MyTarget">
3535
<Message Text="First occurrence" />
3636
</Target>
37-
<Target Name="MyTarget" >
37+
<Target Name="MyTarget">
3838
<Message Text="Second occurrence" />
3939
</Target>
4040
```

0 commit comments

Comments
 (0)