File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -275,19 +275,19 @@ export default function RepoProjectStructure() {
275
275
276
276
switch ( format ) {
277
277
case "md" :
278
- content = `# Directory Structure\n\n\`\`\`\n${ customizedStructure } \`\`\``
278
+ content = `# Repository Structure\n\n\`\`\`\n${ customizedStructure } \`\`\``
279
279
mimeType = "text/markdown;charset=utf-8"
280
280
fileName = "README.md"
281
281
break
282
282
case "txt" :
283
283
content = customizedStructure
284
284
mimeType = "text/plain;charset=utf-8"
285
- fileName = "directory -structure.txt"
285
+ fileName = "repository -structure.txt"
286
286
break
287
287
case "json" :
288
288
content = JSON . stringify ( convertMapToJson ( filteredStructureMap ) , null , 2 )
289
289
mimeType = "application/json;charset=utf-8"
290
- fileName = "directory -structure.json"
290
+ fileName = "repository -structure.json"
291
291
break
292
292
case "html" :
293
293
content = `
@@ -305,7 +305,7 @@ export default function RepoProjectStructure() {
305
305
</html>
306
306
`
307
307
mimeType = "text/html;charset=utf-8"
308
- fileName = "directory -structure.html"
308
+ fileName = "repository -structure.html"
309
309
break
310
310
}
311
311
You can’t perform that action at this time.
0 commit comments