Skip to content

Commit a958373

Browse files
authored
Fix typo in sitemap namespace declaration (#1440)
1 parent f03242d commit a958373

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tooling/docs-assembler/Building/SitemapBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public void Generate()
2929
var currentDate = DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:sszzz");
3030
var root = new XElement(
3131
"urlset",
32-
new XAttribute("xlmns", "http://www.sitemaps.org/schemas/sitemap/0.9"),
32+
new XAttribute("xmlns", "http://www.sitemaps.org/schemas/sitemap/0.9"),
3333
flattenedNavigationItems
3434
.OfType<FileNavigationItem>()
3535
.Select(n => n.Model.Url)

0 commit comments

Comments
 (0)