From 9ab8cf7befc0c72b0665ae9a106af0aec11c99ee Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Wed, 10 May 2023 10:30:46 -0400 Subject: [PATCH] chore: Remove incorrect function documentation Signed-off-by: Sebastian Malton --- packages/utility-features/utilities/src/jsonPath.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/utility-features/utilities/src/jsonPath.ts b/packages/utility-features/utilities/src/jsonPath.ts index 7bcf538952..5ea3b942dd 100644 --- a/packages/utility-features/utilities/src/jsonPath.ts +++ b/packages/utility-features/utilities/src/jsonPath.ts @@ -94,8 +94,6 @@ export function formatJSONValue(value: unknown): string { /** * This function is a safer version of `JSONPath.value(obj, path)` with untrusted jsonpath strings - * - * This function will also stringify the value retrieved from the object */ export function safeJSONPathValue(obj: object, path: string): unknown { try {