Skip to content
This repository was archived by the owner on Aug 24, 2025. It is now read-only.

Commit efd8a5a

Browse files
committed
Improved docs.
1 parent fcb8f7e commit efd8a5a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/object/deepFreeze.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { visit } from "./lib/visit";
33
/**
44
* Recursively freezes objects, useful for constant objects.
55
*
6-
* This function mutates the input value and calls Object.freeze() recursively on all sub-objects.
6+
* This function mutates the input value and freezes all sub-objects recursively.
77
*
88
* @since 12.0.0
99
* @category Object

src/object/deepSeal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { visit } from "./lib/visit";
33
/**
44
* Recursively seals objects, useful for constant objects.
55
*
6-
* This function mutates the input value and calls Object.seal() recursively on all sub-objects.
6+
* This function mutates the input value and seals all sub-objects recursively.
77
*
88
* @since 12.0.0
99
* @category Object

0 commit comments

Comments
 (0)