Signed-off-by: Alessandro (Ale) Segala <43508+ItalyPaleAle@users.noreply.github.com>
This commit is contained in:
Alessandro (Ale) Segala 2022-04-05 21:28:00 +00:00 committed by GitHub
parent 612f6e6ec3
commit 661d1b38b5
1 changed files with 2 additions and 2 deletions

View File

@ -473,8 +473,8 @@ func (c *StateStore) getCollectionLink() string {
}
// getDocumentLink returns the link to a document in the collection.
func (c *StateStore) getDocumentLink(docId string) string {
return fmt.Sprintf("dbs/%s/colls/%s/docs/%s", c.metadata.Database, c.metadata.Collection, docId)
func (c *StateStore) getDocumentLink(docID string) string {
return fmt.Sprintf("dbs/%s/colls/%s/docs/%s", c.metadata.Database, c.metadata.Collection, docID)
}
// getSprocLink returns the link to a stored procedure in the collection.