Skip to content

Commit b63ae08

Browse files
authored
Merge branch 'master' into mikejo-br5
2 parents f82c1e5 + 3d729ab commit b63ae08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/msbuild/item-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Starting with MSBuild 4.0, code in tasks and targets can call item functions to
5959
|`Reverse`|`@(MyItem->Reverse())`|Returns the items in reverse order.|
6060
|`AnyHaveMetadataValue`|`@(MyItem->AnyHaveMetadataValue("MetadataName", "MetadataValue"))`|Returns a `boolean` to indicate whether any item has the given metadata name and value. The comparison is case insensitive.|
6161
|`ClearMetadata`|`@(MyItem->ClearMetadata())`|Returns items with their metadata cleared. Only the `itemspec` is retained.|
62-
|`HasMetadata`|`@(MyItem->HasMetadataValue("MetadataName"))`|Returns items that have the given metadata name. The comparison is case insensitive.|
62+
|`HasMetadata`|`@(MyItem->HasMetadata("MetadataName"))`|Returns items that have the given metadata name. The comparison is case insensitive.|
6363
|`Metadata`|`@(MyItem->Metadata("MetadataName"))`|Returns the values of the metadata that have the metadata name.|
6464
|`WithMetadataValue`|`@(MyItem->WithMetadataValue("MetadataName", "MetadataValue"))`|Returns items that have the given metadata name and value. The comparison is case insensitive.|
6565

@@ -99,4 +99,4 @@ Starting with MSBuild 4.0, code in tasks and targets can call item functions to
9999
```
100100

101101
## See Also
102-
[Items](../msbuild/msbuild-items.md)
102+
[Items](../msbuild/msbuild-items.md)

0 commit comments

Comments
 (0)