File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -927,7 +927,7 @@ export class EntityManager {
927927 /**
928928 * Restores entities by a given condition(s).
929929 * Unlike save method executes a primitive operation without cascades, relations and other operations included.
930- * Executes fast and efficient DELETE query.
930+ * Executes fast and efficient UPDATE query.
931931 * Does not check if entity exist in the database.
932932 * Condition(s) cannot be empty.
933933 */
Original file line number Diff line number Diff line change @@ -434,7 +434,7 @@ export class Repository<Entity extends ObjectLiteral> {
434434 /**
435435 * Records the delete date of entities by a given criteria.
436436 * Unlike save method executes a primitive operation without cascades, relations and other operations included.
437- * Executes fast and efficient SOFT-DELETE query.
437+ * Executes fast and efficient UPDATE query.
438438 * Does not check if entity exist in the database.
439439 */
440440 softDelete (
@@ -459,7 +459,7 @@ export class Repository<Entity extends ObjectLiteral> {
459459 /**
460460 * Restores entities by a given criteria.
461461 * Unlike save method executes a primitive operation without cascades, relations and other operations included.
462- * Executes fast and efficient SOFT-DELETE query.
462+ * Executes fast and efficient UPDATE query.
463463 * Does not check if entity exist in the database.
464464 */
465465 restore (
You can’t perform that action at this time.
0 commit comments