summaryrefslogtreecommitdiff
path: root/docs/guide/typescript/variable.md
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-10-15 15:37:46 +0200
committerAylur <[email protected]>2024-10-15 15:37:46 +0200
commitc84d7103c74e313fe37dd285e47c819afa6e0d27 (patch)
tree0e0cbcee40676d2ce88f2b6f040ee3210b08020f /docs/guide/typescript/variable.md
parentcbe650afb31c24faea6da45b4aeeffc6e964969d (diff)
parentb33c3bf91dbbea13b1a2c8603e00809b22cd42c8 (diff)
Merge branch 'small-refactor'
Diffstat (limited to 'docs/guide/typescript/variable.md')
-rw-r--r--docs/guide/typescript/variable.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/guide/typescript/variable.md b/docs/guide/typescript/variable.md
index 4207f61..2abacbd 100644
--- a/docs/guide/typescript/variable.md
+++ b/docs/guide/typescript/variable.md
@@ -8,7 +8,7 @@ Variable is just a simple object which holds a single value.
It also has some shortcuts for hooking up subprocesses, intervals and other gobjects.
:::info
-The `Variable` object imported from the `"astal"` package is **not** [Astal.Variable](https://aylur.github.io/libastal/class.Variable.html).
+The `Variable` object imported from the `"astal"` package is **not** [Astal.Variable](https://aylur.github.io/libastal/io/class.Variable.html).
:::
## Example Usage
@@ -75,7 +75,7 @@ output. They can poll and watch at the same time, but they
can only poll/watch once.
:::warning
-The command parameter is passed to [execAsync](/guide/ags/utilities#executing-external-commands-and-scripts)
+The command parameter is passed to [execAsync](/guide/typescript/utilities#executing-external-commands-and-scripts)
which means they are **not** executed in a shell environment,
they do **not** expand ENV variables like `$HOME`,
and they do **not** handle logical operators like `&&` and `||`.