summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/pathdivision.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/markdown/snippets/pathdivision.md')
-rw-r--r--docs/markdown/snippets/pathdivision.md15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/markdown/snippets/pathdivision.md b/docs/markdown/snippets/pathdivision.md
deleted file mode 100644
index 6da6005fd..000000000
--- a/docs/markdown/snippets/pathdivision.md
+++ /dev/null
@@ -1,15 +0,0 @@
-## Joining paths with /
-
-Joining two paths has traditionally been done with the `join_paths` function.
-
-```meson
-joined = join_paths('foo', 'bar')
-```
-
-Now you can use the simpler notation using the `/` operator.
-
-```meson
-joined = 'foo' / 'bar'
-```
-
-This only works for strings.