From 19c55900f07be4c501a30a556d28cb59434b2965 Mon Sep 17 00:00:00 2001 From: Zalim Bashorov Date: Wed, 28 Jan 2026 23:59:03 +0100 Subject: [PATCH] Fix invalid reference in the example for union of worlds with renaming interface --- design/mvp/WIT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/design/mvp/WIT.md b/design/mvp/WIT.md index 2ea7a382..fd9fc971 100644 --- a/design/mvp/WIT.md +++ b/design/mvp/WIT.md @@ -380,7 +380,7 @@ world world-using-a { } world invalid-union-world { - include my-using-a with { a as b } // invalid: 'a', which is short for 'local:demo/a', is an interface name + include world-using-a with { a as b } // invalid: 'a', which is short for 'local:demo/a', is an interface name } ```