Skip to content

Commit 87689fc

Browse files
committed
Add icon
1 parent 574e79d commit 87689fc

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

docs/images/icons/api.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/manifest.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
},
190190
{
191191
"title": "Secrets",
192-
"description": "Learn how to use secrets in your worskpace",
192+
"description": "Learn how to use secrets in your workspace",
193193
"icon_path": "./images/icons/secrets.svg",
194194
"path": "./secrets.md"
195195
},
@@ -319,6 +319,13 @@
319319
"path": "./contributing/SECURITY.md"
320320
}
321321
]
322+
},
323+
{
324+
"title": "API",
325+
"description": "Learn how to use Coderd API",
326+
"icon_path": "./images/icons/api.svg",
327+
"path": "./api/index.md",
328+
"children": []
322329
}
323330
]
324331
}

scripts/apidocgen/postprocess/main.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import (
44
"bufio"
55
"bytes"
66
"flag"
7-
"fmt"
87
"log"
98
"os"
109
"path"
@@ -61,7 +60,7 @@ func main() {
6160
log.Fatal("can't write docs directory: ", err)
6261
}
6362

64-
fmt.Println("Done")
63+
log.Println("Done")
6564
}
6665

6766
func loadMarkdownSections() ([][]byte, error) {

0 commit comments

Comments
 (0)