Fixed typo in content-management/page-resources

One of the examples for resource matching `images/sunset.jpeg` was the wrong case.
This commit is contained in:
Farai Gandiya 2020-01-15 22:54:30 +02:00 committed by Bjørn Erik Pedersen
parent 936633e25f
commit 137a32f905

View File

@ -67,7 +67,7 @@ GetMatch
```go
// Using Match/GetMatch to find this images/sunset.jpg ?
.Resources.Match "images/sun*" ✅
.Resources.Match "**/Sunset.jpg" ✅
.Resources.Match "**/sunset.jpg" ✅
.Resources.Match "images/*.jpg" ✅
.Resources.Match "**.jpg" ✅
.Resources.Match "*" 🚫