diff --git a/docs/tutorials/music-store-app/displaying-images.md b/docs/tutorials/music-store-app/displaying-images.md index 93a0fbadb..81b038bae 100644 --- a/docs/tutorials/music-store-app/displaying-images.md +++ b/docs/tutorials/music-store-app/displaying-images.md @@ -201,7 +201,7 @@ Follow this procedure: - Add this data binding and converter to the panel element below: ``` -IsVisible="{Binding Cover, Converter={x:Static ObjectConverters.IsNull}}" +IsVisible="{Binding Cover, Converter={x:Static ObjectConverters.IsNotNull}}" ``` A converter is an extension of a data binding expression that can convert the binding value before it is passed to the bound control. The `IsNull` converter returns a Boolean that is true when the value object is null.