motoko 3.8.3 → 3.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/contrib/snippets.json
CHANGED
@@ -397,7 +397,7 @@
|
|
397
397
|
"set-timer"
|
398
398
|
],
|
399
399
|
"body": [
|
400
|
-
"let ${1:id} = Timer.setTimer(#seconds ${2:0}, func () {",
|
400
|
+
"let ${1:id} = Timer.setTimer<system>(#seconds ${2:0}, func () {",
|
401
401
|
"\t$0",
|
402
402
|
"});"
|
403
403
|
]
|
@@ -407,7 +407,7 @@
|
|
407
407
|
"recurring-timer"
|
408
408
|
],
|
409
409
|
"body": [
|
410
|
-
"let ${1:id} = Timer.recurringTimer(#seconds ${2:0}, func () {",
|
410
|
+
"let ${1:id} = Timer.recurringTimer<system>(#seconds ${2:0}, func () {",
|
411
411
|
"\t$0",
|
412
412
|
"});"
|
413
413
|
]
|
package/package.json
CHANGED