From 939448cb0e78b34bc218e490633b446064801fd9 Mon Sep 17 00:00:00 2001 From: ronny-mysten <118224482+ronny-mysten@users.noreply.github.com> Date: Fri, 6 Dec 2024 14:00:42 -0700 Subject: [PATCH] Inconsequential text update (#20448) ## Description Describe the changes or additions included in this PR. ## Test plan How did you test the new or updated feature? --- ## Release notes Check each box that your changes affect. If none of the boxes relate to your changes, release notes aren't required. For each box you select, include information after the relevant heading that describes the impact of your changes that a user might notice and any actions they must take to implement updates. - [ ] Protocol: - [ ] Nodes (Validators and Full nodes): - [ ] Indexer: - [ ] JSON-RPC: - [ ] GraphQL: - [ ] CLI: - [ ] Rust SDK: - [ ] REST API: --- .../move/crates/move-analyzer/trace-debug/src/extension.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external-crates/move/crates/move-analyzer/trace-debug/src/extension.ts b/external-crates/move/crates/move-analyzer/trace-debug/src/extension.ts index 77f2851fa272f..89790a4e116c3 100644 --- a/external-crates/move/crates/move-analyzer/trace-debug/src/extension.ts +++ b/external-crates/move/crates/move-analyzer/trace-debug/src/extension.ts @@ -272,7 +272,7 @@ function findTracedFunctions(pkgRoot: string, pkgModules: string[]): string[] { try { return fs.readdirSync(tracesDir); } catch (err) { - throw new Error(`Error accessing 'trace' directory for package at '${pkgRoot}'`); + throw new Error(`Error accessing 'traces' directory for package at '${pkgRoot}'`); } } const tracesDir = path.join(pkgRoot, 'traces');