From 7ac51f1f88f2ff6770e91714923a32cb06f24bf7 Mon Sep 17 00:00:00 2001 From: Daniel Chao Date: Thu, 17 Oct 2024 07:02:10 -0700 Subject: [PATCH] Fix invalid syntax in doc comments of pkl:reflect members (#703) --- stdlib/reflect.pkl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/reflect.pkl b/stdlib/reflect.pkl index f192fa99..c430e06b 100644 --- a/stdlib/reflect.pkl +++ b/stdlib/reflect.pkl @@ -116,7 +116,7 @@ external const nothingType: NothingType /// In the following example, `barnOwl` is such an object, created by amending the module `pigeon.pkl`. /// /// ``` -/// barnOwl = import("pigeon.pkl") { +/// barnOwl = (import("pigeon.pkl")) { /// name = "Barn Owl" /// } /// ``` @@ -129,7 +129,7 @@ external const function Module(mod: base.Module): Module /// In the following example, `barnOwl` is such an object, created by amending the module `pigeon.pkl`. /// /// ``` -/// barnOwl = import("pigeon.pkl") { +/// barnOwl = (import("pigeon.pkl")) { /// name = "Barn Owl" /// } /// ```