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 5b31063
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
{
path: '/foo/',
lastmod: '2015-01-04',
priority: '0.8',
priority: 0.8,
changefreq: 'daily'
},
{
Expand All @@ -57,7 +57,7 @@
filename: 'map.xml',
lastmod: true,
changefreq: 'monthly',
priority: '0.4'
priority: 0.4
}
})
]
Expand Down
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 5b31063

Please sign in to comment.