We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9780fe commit dd2c075Copy full SHA for dd2c075
1 file changed
.claude/skills/synapse-storm/SKILL.md
@@ -495,7 +495,7 @@ $list = ([])
495
inet:fqdn limit 10 +#tag
496
497
// CORRECT - pipe returns to Storm operator syntax
498
-inet:fqdn | limit 10 | +#tag
+inet:fqdn limit 10 | +#tag
499
```
500
501
### 4. Unbalanced Brackets/Braces
@@ -578,14 +578,14 @@ try { ... } catch * as $err { ... }
578
// return() - exits a callable function
579
580
function check00(n) {
581
- if ($fatal) {return($lib.null) } // exit function
+ if ($fatal) { return() } // exit function
582
return(woot) // exit function returning "woot"
583
}
584
585
function check01(n) {
586
for $x in $n {
587
emit $x // emit $x to the invoker
588
- if ($x = woot) {
+ if ($x = 'woot') {
589
stop // exit the emitter function
590
591
0 commit comments