We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf7e77b commit 59bccedCopy full SHA for 59bcced
iframe/script/User_config/ACE_Config.js
@@ -124,9 +124,9 @@ function ACE_CodingForEDA(editor, edcode) {
124
125
// 辅助函数:生成更详细的文档文本
126
function buildDocText(item) {
127
- let doc = item.description + '\n\n';
+ let doc = item.description + '\n用法:' + item.methodPath + '()\n';
128
if (item.parameters && item.parameters.length > 0) {
129
- doc += 'Parameters:\n';
+ doc += '参数:\n';
130
item.parameters.forEach(p => {
131
doc += ` • ${p.name}: ${p.description}\n`;
132
});
0 commit comments