Skip to content

Commit 1810103

Browse files
committed
docs
1 parent 65c3a30 commit 1810103

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "custom-string-formatter",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Customizable String Formatter",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/resolver.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/**
22
* Property-Resolution Context.
3+
*
4+
* @see {@link IFilter.transform}
35
*/
46
export interface IPropertyContext {
57
/**
@@ -8,9 +10,9 @@ export interface IPropertyContext {
810
path: string;
911

1012
/**
11-
* Container for the resolved property - value/property immediately preceding it (in the resolution chain).
13+
* Container for the resolved value/property, immediately preceding it (in the resolution chain).
1214
*
13-
* For example, for a simple property reference (not a nested one), the container is the formatting object itself.
15+
* For a simple property reference (not a nested one), the container is the formatting object itself.
1416
*
1517
* It is `undefined` when the property chain contains only `this` or when the property does not exist,
1618
* because in those cases there is no container.

0 commit comments

Comments
 (0)