Skip to content

Commit

Permalink
remove \n after print
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBger committed Nov 14, 2024
1 parent 12c2948 commit 23d4ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifest/package.go
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ func (m *Manifest) readFileFromName(filename string) ([]byte, error) {
func (r *manifestConverter) convertToPkg(m *Manifest) (pkg *pbsubstreams.Package, err error) {
doc := m.Package.Doc
if doc != "" {
fmt.Println("Deprecated: the 'package.doc' field is deprecated. The README.md file is picked up instead.\n")
fmt.Println("Deprecated: the 'package.doc' field is deprecated. The README.md file is picked up instead.")
}

readmeContent, err := m.readFileFromName("README.md")
Expand Down

0 comments on commit 23d4ac4

Please sign in to comment.