Skip to content

Commit 1f907e8

Browse files
committed
Fix.
1 parent 456fabf commit 1f907e8

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

docs/stdlib-reference/interfaces/BuiltinFloatingPointType/index.md

-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@ A type that uses a floating-point representation
1212

1313
## Methods
1414

15-
*
1615
* [getPi](/slang/stdlib-reference/interfaces/BuiltinFloatingPointType/getPi)
1716

docs/stdlib-reference/interfaces/IDifferentiableFunc/index.md

-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@ layout: stdlib-reference
1212

1313
## Methods
1414

15-
*
1615
* [operator\(\)](/slang/stdlib-reference/interfaces/IDifferentiableFunc/operatorx28x29)
1716

docs/stdlib-reference/interfaces/IDifferentiableMutatingFunc/index.md

-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@ layout: stdlib-reference
1212

1313
## Methods
1414

15-
*
1615
* [operator\(\)](/slang/stdlib-reference/interfaces/IDifferentiableMutatingFunc/operatorx28x29)
1716

source/slang/slang-doc-markdown-writer.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ static void _getDeclsOfType(DocMarkdownWriter* writer, DocumentPage* page, List<
6767
// Sort by name.
6868
for (auto pair : nameDict)
6969
{
70-
out.add(pair.second);
70+
if (pair.first)
71+
out.add(pair.second);
7172
}
7273
out.sort([](Decl* a, Decl* b) -> bool { return getText(a->getName()) < getText(b->getName()); });
7374
}

0 commit comments

Comments
 (0)