diff options
Diffstat (limited to 'resources/resource.go')
-rw-r--r-- | resources/resource.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/resource.go b/resources/resource.go index 64f9f12f3..28b9a8879 100644 --- a/resources/resource.go +++ b/resources/resource.go @@ -440,7 +440,7 @@ func (l *genericResource) openDestinationsForWriting() (w io.WriteCloser, err er // Fast path: // This is a processed version of the original; - // check if it already existis at the destination. + // check if it already exists at the destination. for _, targetFilename := range targetFilenames { if _, err := l.getSpec().BaseFs.PublishFs.Stat(targetFilename); err == nil { continue @@ -662,7 +662,7 @@ type resourcePathDescriptor struct { targetPathBuilder func() page.TargetPaths // This will normally be the same as above, but this will only apply to publishing - // of resources. It may be mulltiple values when in multihost mode. + // of resources. It may be multiple values when in multihost mode. baseTargetPathDirs []string // baseOffset is set when the output format's path has a offset, e.g. for AMP. |