hugolib: Be a litle more specific in NextPage TODO

This commit is contained in:
Bjørn Erik Pedersen 2018-09-26 09:26:53 +02:00
parent ad705aac06
commit fb732d5322
No known key found for this signature in database
GPG key ID: 330E6E2BD4859D8F

View file

@ -2310,13 +2310,13 @@ func (p *Page) pathOrTitle() string {
}
func (p *Page) Next() *Page {
// TODO Remove in Hugo 0.52
// TODO Remove the deprecation notice (but keep PrevPage as an alias) Hugo 0.52
helpers.Deprecated("Page", ".Next", "Use .PrevPage (yes, not .NextPage).", false)
return p.PrevPage
}
func (p *Page) Prev() *Page {
// TODO Remove in Hugo 0.52
// TODO Remove the deprecation notice (but keep NextPage as an alias) Hugo 0.52
helpers.Deprecated("Page", ".Prev", "Use .NextPage (yes, not .PrevPage).", false)
return p.NextPage
}