diff options
| -rw-r--r-- | internal/postgres/symbolsearch.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/internal/postgres/symbolsearch.go b/internal/postgres/symbolsearch.go index 599c3662..7b36b7e4 100644 --- a/internal/postgres/symbolsearch.go +++ b/internal/postgres/symbolsearch.go @@ -29,10 +29,6 @@ func upsertSymbolSearchDocuments(ctx context.Context, tx *database.DB, // If a user is looking for the symbol "DB.Begin", from package // database/sql, we want them to be able to find this by searching for - // "DB.Begin" and "sql.DB.Begin". Searching for "sql.DB", "DB", "Begin" or - // "sql.DB" will not return "DB.Begin". - // If a user is looking for the symbol "DB.Begin", from package - // database/sql, we want them to be able to find this by searching for // "DB.Begin", "Begin", and "sql.DB.Begin". Searching for "sql.DB" or // "DB" will not return "DB.Begin". q := ` |
