summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Paul <n@nc0.fr>2023-10-04 09:20:36 +0200
committerNicolas Paul <n@nc0.fr>2023-10-04 09:27:14 +0200
commitcbe56ed63e74c91de5fbfa0c1a3a40283e48ac55 (patch)
treec77d4c6556dceaf7f897dac3d7cec50b92c39ed0
parent85a90f56fbe098e8e8e83127809ed15e20017b7c (diff)
Fix typos in the Starlark page
-rw-r--r--doc/pages/starlark.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/pages/starlark.md b/doc/pages/starlark.md
index 14abe35..a90c381 100644
--- a/doc/pages/starlark.md
+++ b/doc/pages/starlark.md
@@ -46,7 +46,7 @@ Python, removed of some Turing-completness for safety.
Starlark is commonly used within [Bazel](https://bazel.build) and
[Drone](https://drone.io/).
-The design choices behind Starlark ensures multiple neat properties to the
+The design choices behind Starlark ensure multiple neat properties to the
language and, by extension, to the configurations you write: determinism,
hermeticity, parallelism, and simplicity.
@@ -91,7 +91,8 @@ fizz_buzz(20)
## Implementations
-SVGU is build upon the Go implementation of Starlark, but other exists.
+SVGU is build upon the Go implementation of Starlark, but other implementations
+do exist.
We encourage the adoption of Starlark everywhere.
- [Go](https://github.com/google/starlark-go/)