diff options
author | Paul Duncan <pabs@pablotron.org> | 2022-02-26 13:54:48 -0500 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2022-02-26 13:54:48 -0500 |
commit | d5bd2d96cf58e997565aafab251a91714bc07a21 (patch) | |
tree | d5ea0d7e1c7bde7bae147e56fe77a14bb8a5c98c | |
parent | 3a0b961b0fcbd48cf7a7bd0be41e2cd5752e4f38 (diff) | |
download | cvez-d5bd2d96cf58e997565aafab251a91714bc07a21.tar.bz2 cvez-d5bd2d96cf58e997565aafab251a91714bc07a21.zip |
dbstore/dbstore.go: fix QueryRow documentation
-rw-r--r-- | dbstore/dbstore.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbstore/dbstore.go b/dbstore/dbstore.go index 6f53081..bf66fa4 100644 --- a/dbstore/dbstore.go +++ b/dbstore/dbstore.go @@ -152,7 +152,7 @@ func (me DbStore) Query( return nil } -// Execute query and invoke callback with each row of result. +// Execute query and invoke callback with first row of result. func (me DbStore) QueryRow( ctx context.Context, queryId string, |