From 730858bf64957dfdeb1e8eb3387487f0db630f45 Mon Sep 17 00:00:00 2001 From: Brian Hendriks Date: Fri, 7 Jun 2024 13:40:10 -0700 Subject: [PATCH] Update go/libraries/doltcore/sqle/dfunctions/hashof_database.go Co-authored-by: Jason Fulghum --- go/libraries/doltcore/sqle/dfunctions/hashof_database.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/libraries/doltcore/sqle/dfunctions/hashof_database.go b/go/libraries/doltcore/sqle/dfunctions/hashof_database.go index 66a256d92c..5f291f034a 100644 --- a/go/libraries/doltcore/sqle/dfunctions/hashof_database.go +++ b/go/libraries/doltcore/sqle/dfunctions/hashof_database.go @@ -61,7 +61,7 @@ func (t *HashOfDatabase) String() string { // Description implements the FunctionExpression interface func (t *HashOfDatabase) Description() string { - return "returns a hash of the contents of the current database, typically used for detecting if a database has changed" + return "returns a hash of the contents of the current branch and database, typically used for detecting if a database has changed" } // IsNullable implements the Expression interface.