Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
justmiles committed Oct 19, 2020
1 parent 6ceec6c commit a348358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/markdown.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func (m *Markdown2Confluence) queueProcessor(wg *sync.WaitGroup, queue *chan Mar
for markdownFile := range *queue {
url, err := markdownFile.Upload(m)
if err != nil {
*errors = append(*errors, fmt.Errorf("Unable to upload markdown file, %s: \n\t%s", markdownFile.Path, err))
*errors = append(*errors, fmt.Errorf("Unable to upload markdown file %s: \n\t%s", markdownFile.Path, err))
}
fmt.Printf("%s: %s\n", markdownFile.FormattedPath(), url)
}
Expand Down

0 comments on commit a348358

Please sign in to comment.