all: Fix comments for exported functions and packages

This commit is contained in:
Oleksandr Redko
2023-05-18 12:05:56 +03:00
committed by Bjørn Erik Pedersen
parent 24e7d0c174
commit 610cedaa61
24 changed files with 30 additions and 30 deletions

View File

@@ -128,13 +128,13 @@ type Site interface {
// For internal use only.
GetPageWithTemplateInfo(info tpl.Info, ref ...string) (Page, error)
// BuildDraft is deprecated and will be removed in a future release.
// BuildDrafts is deprecated and will be removed in a future release.
BuildDrafts() bool
// IsMultilingual reports whether this site is configured with more than one language.
// IsMultiLingual reports whether this site is configured with more than one language.
IsMultiLingual() bool
// LanguagePrefi returns the language prefix for this site.
// LanguagePrefix returns the language prefix for this site.
LanguagePrefix() string
}