Skip to content

Commit

Permalink
Change README examples to correctly use a number value for priority
Browse files Browse the repository at this point in the history
  • Loading branch information
schneidmaster committed Jan 6, 2021
1 parent 7fe5edf commit 5de03d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ const paths = [
{
path: '/foo/',
lastmod: '2015-01-04',
priority: '0.8',
priority: 0.8,
changefreq: 'monthly'
},
{
path: '/bar/',
lastmod: '2018-02-05',
priority: '0.5',
priority: 0.5,
changefreq: 'yearly'
}
];
Expand Down Expand Up @@ -111,7 +111,7 @@ export default {
filename: 'map.xml',
lastmod: true,
changefreq: 'monthly',
priority: '0.4'
priority: 0.4
}
})
]
Expand Down

0 comments on commit 5de03d6

Please sign in to comment.