Run go fmt ./...

This commit is contained in:
henryjcee 2024-10-10 10:44:06 +01:00
parent 0fc283ce8d
commit 23b45b716e
No known key found for this signature in database
GPG Key ID: 80F585CB00A434A8

View File

@ -448,6 +448,7 @@ func (db *DB) Assign(attrs ...interface{}) (tx *DB) {
// Unscoped allows queries to include records marked as deleted, // Unscoped allows queries to include records marked as deleted,
// overriding the soft deletion behavior. // overriding the soft deletion behavior.
// Example: // Example:
//
// var users []User // var users []User
// db.Unscoped().Find(&users) // db.Unscoped().Find(&users)
// // Retrieves all users, including deleted ones. // // Retrieves all users, including deleted ones.