Remove terminal newline from quad.Quad stringer
This is the conventional implementation of a fmt.Stringer. Also went through and fixed up some lint.
This commit is contained in:
parent
a81005ba21
commit
b17334ea36
6 changed files with 37 additions and 39 deletions
|
|
@ -22,7 +22,7 @@ import (
|
|||
)
|
||||
|
||||
func Open(cfg *config.Config) (graph.TripleStore, error) {
|
||||
glog.Infof("Opening database \"%s\" at %s", cfg.DatabaseType, cfg.DatabasePath)
|
||||
glog.Infof("Opening database %q at %s", cfg.DatabaseType, cfg.DatabasePath)
|
||||
ts, err := graph.NewTripleStore(cfg.DatabaseType, cfg.DatabasePath, cfg.DatabaseOptions)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue