You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rename uses of "runtime" where it refers to the CLI runtime and the
browser runtime to "platform". Runtime usually refers to the thing doing
the running, such as the evaluator or bytecode VM and has started to
cause a little confusion or cumbersome language now that the bytecode VM
is being developed. Initial talk of perhaps targeting micro-controllers
as "platforms" also suggests this should be called platform.
There are still a few uses of the word "runtime" left - these refer to
things like "runtime errors" where the term still makes sense, as it
does not refer to the Evy abstraction for runtime/platform.
Fix a lint error in `learn/pkg/learn/markdown.go` since golangci-lint
wants to complain about this now.
Commit-group: 1/2
Copy file name to clipboardExpand all lines: docs/spec.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ To get an intuitive understanding of Evy, you can either look at its
48
48
[Assignability of variable values](#assignability-of-variable-values), [Assignability of constant values](#assignability-of-constant-values), [Assignability of empty composite literals](#assignability-of-empty-composite-literals)
49
49
24.[**Run-time Panics and Recoverable Errors**](#run-time-panics-and-recoverable-errors)
50
50
25.[**Execution Model and Event Handlers**](#execution-model-and-event-handlers)
51
-
26.[**Runtimes**](#runtimes)
51
+
26.[**Platforms**](#platforms)
52
52
53
53
<!-- genend:toc -->
54
54
@@ -1490,15 +1490,16 @@ only some parameters are needed, use the anonymous `_` parameter.
1490
1490
For more information on individual event handlers, see the
buf.WriteString(strings.Title(alertType)) //nolint:staticcheck // we can savely use it here as we know all strings we want to use and have no punctuation.
155
+
buf.WriteString(strings.Title(alertType)) //nolint:staticcheck // we can safely use it here as we know all strings we want to use and have no punctuation.
0 commit comments