summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraidanfnv <aidanf@nvidia.com>2025-05-09 00:55:30 -0700
committerGitHub <noreply@github.com>2025-05-09 00:55:30 -0700
commit8a542dfffca7633707cb4b5e6ac007c4523778f8 (patch)
tree7a2d55146f1d582b06320e07cde0ec55cdd0722d
parent2b8152110b9a41672dd4dd5f528aa23caa8e88a3 (diff)
Restore Properties section name in stdlib reference (#7042)
-rw-r--r--source/slang/slang-doc-markdown-writer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/slang-doc-markdown-writer.cpp b/source/slang/slang-doc-markdown-writer.cpp
index 540f0c2e5..d2e68ccc8 100644
--- a/source/slang/slang-doc-markdown-writer.cpp
+++ b/source/slang/slang-doc-markdown-writer.cpp
@@ -1989,7 +1989,7 @@ void DocMarkdownWriter::writeAggType(
_getDeclsOfType<PropertyDecl>(this, page, properties);
if (properties.getCount())
{
- out << toSlice("## m_currentPage->path\n\n");
+ out << toSlice("## Properties\n\n");
_appendAsBullets(_getAsNameAndTextList(properties), true, 0);
out << toSlice("\n");
}