You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@daffodil.apache.org by ar...@apache.org on 2022/08/05 17:38:10 UTC

[daffodil-vscode] 06/28: - fix potential typo

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

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

commit efadc2a5ddeac6ef325f9356451756474e41204e
Author: Michael Hoke <mi...@nteligen.com>
AuthorDate: Wed Jun 29 19:18:02 2022 -0400

    - fix potential typo
---
 server/core/src/main/scala/org.apache.daffodil.debugger.dap/Parse.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/core/src/main/scala/org.apache.daffodil.debugger.dap/Parse.scala b/server/core/src/main/scala/org.apache.daffodil.debugger.dap/Parse.scala
index e77cc07..617bdcc 100644
--- a/server/core/src/main/scala/org.apache.daffodil.debugger.dap/Parse.scala
+++ b/server/core/src/main/scala/org.apache.daffodil.debugger.dap/Parse.scala
@@ -679,7 +679,7 @@ object Parse {
         }
     }
     sealed trait TDMLConfig {
-      val action, name, description = 
+      var (action, name, description) = 
         this match {
           case TDMLConfig.Config(action, name, description) => (action, name, description)
           case TDMLConfig.None => ("none", "Default Test Case Name", "Generated by DFDL VSCode Extension")