Compare commits

...

2 Commits

Author SHA1 Message Date
7cdd7444a5 use non format logger 2024-09-25 18:05:20 +02:00
128a2c22f7 fix typos in issue templates 2024-09-25 16:38:23 +02:00
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ assignees: TLINDEN
--- ---
**Describtion** **Description**
<!-- Please provide a clear and concise description of the issue: --> <!-- Please provide a clear and concise description of the issue: -->

View File

@@ -7,7 +7,7 @@ assignees: TLINDEN
--- ---
**Describtion** **Description**
<!-- Please provide a clear and concise description of the feature you desire: --> <!-- Please provide a clear and concise description of the feature you desire: -->

View File

@@ -99,7 +99,7 @@ func LoadAndEvalFile(env *zygo.Zlisp, path string) error {
// FIXME: check what res (_ here) could be and mean // FIXME: check what res (_ here) could be and mean
_, err = env.EvalString(string(code)) _, err = env.EvalString(string(code))
if err != nil { if err != nil {
log.Fatalf(env.GetStackTrace(err)) log.Fatal(env.GetStackTrace(err))
} }
} }