diff options
author | Emile <hanemile@protonmail.com> | 2019-03-07 16:24:46 +0100 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-03-07 16:24:46 +0100 |
commit | 072cf91efbcf66a506d015a40613e1205f209d95 (patch) | |
tree | 21b9d57e318897cfa1993cf65a93a875474f810f /backend | |
parent | 79cff7cfd10f41be8aa445ea6ddb4cd4fc24f1ea (diff) |
updated the comments to golint standard
Diffstat (limited to 'backend')
-rw-r--r-- | backend/delete.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/delete.go b/backend/delete.go index bc463dd..d90559d 100644 --- a/backend/delete.go +++ b/backend/delete.go @@ -6,7 +6,7 @@ import ( "log" ) -// deleteAll Stars deletes all the rows in the stars table +// DeleteAll Stars deletes all the rows in the stars table func DeleteAllStars(database *sql.DB) { db = database // build the query creating a new node @@ -20,7 +20,7 @@ func DeleteAllStars(database *sql.DB) { } } -// deleteAll Stars deletes all the rows in the nodes table +// DeleteAll Stars deletes all the rows in the nodes table func DeleteAllNodes(database *sql.DB) { db = database // build the query creating a new node |