You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@daffodil.apache.org by sh...@apache.org on 2022/12/01 13:21:12 UTC

[daffodil-vscode] branch main updated: Fix typo, daffodilDebugClassPath -> daffodilDebugClasspath

This is an automated email from the ASF dual-hosted git repository.

shanedell pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git


The following commit(s) were added to refs/heads/main by this push:
     new 74b2490  Fix typo, daffodilDebugClassPath -> daffodilDebugClasspath
74b2490 is described below

commit 74b249028d4a86a13e57ae6171119a0fac54e9e5
Author: Shane Dell <sh...@gmail.com>
AuthorDate: Wed Nov 30 18:05:54 2022 -0500

    Fix typo, daffodilDebugClassPath -> daffodilDebugClasspath
    
    Closes #357
---
 src/daffodilDebugger.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/daffodilDebugger.ts b/src/daffodilDebugger.ts
index 9f6e6fa..a60bfb3 100644
--- a/src/daffodilDebugger.ts
+++ b/src/daffodilDebugger.ts
@@ -167,7 +167,7 @@ export async function getDebugger(
       // Get daffodilDebugger class paths to be added to the debugger
       let daffodilDebugClasspath = ''
 
-      if (config.daffodilDebugClassPath) {
+      if (config.daffodilDebugClasspath) {
         daffodilDebugClasspath = config.daffodilDebugClasspath.includes(
           '${workspaceFolder}'
         )