We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 640da47 commit 0349ce0Copy full SHA for 0349ce0
1 file changed
web/src/pages/reference/[func].astro
@@ -283,6 +283,7 @@ const oopList = Array.isArray(funcInfo.oop) ? funcInfo.oop : funcInfo.oop ? [fun
283
{syntax.returns && (
284
<>
285
<h4>Returns</h4>
286
+ <EnhancedMarkdown content={syntax.returns.description ?? ""} />
287
<ul>
288
{syntax.returns.values.map((ret: any) => (
289
<li>
@@ -291,7 +292,6 @@ const oopList = Array.isArray(funcInfo.oop) ? funcInfo.oop : funcInfo.oop ? [fun
291
292
</li>
293
))}
294
</ul>
- <EnhancedMarkdown content={syntax.returns.description ?? ""} />
295
</>
296
)}
297
@@ -330,4 +330,4 @@ const oopList = Array.isArray(funcInfo.oop) ? funcInfo.oop : funcInfo.oop ? [fun
330
331
<SeeAlsoSection seeAlsoLinks={getSeeAlsoLinksForItem(func)} currentId={func.id} />
332
</StarlightPage>
333
-</div>
+</div>
0 commit comments