mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Unbreak permalink.
The permalink should be "linux" not "Linux. PiperOrigin-RevId: 312518858
This commit is contained in:
committed by
gVisor bot
parent
05c89af6ed
commit
5bf33a3863
@@ -46,7 +46,7 @@ type SyscallDoc struct {
|
||||
}
|
||||
|
||||
var mdTemplate = template.Must(template.New("out").Parse(`---
|
||||
title: {{.OS}}/{{.Arch}}
|
||||
title: {{.Title}}
|
||||
description: Syscall Compatibility Reference Documentation for {{.OS}}/{{.Arch}}
|
||||
layout: docs
|
||||
category: Compatibility
|
||||
@@ -134,6 +134,7 @@ func main() {
|
||||
|
||||
weight += 10
|
||||
data := struct {
|
||||
Title string
|
||||
OS string
|
||||
Arch string
|
||||
Weight int
|
||||
@@ -149,7 +150,8 @@ func main() {
|
||||
URLs []string
|
||||
}
|
||||
}{
|
||||
OS: strings.Title(osName),
|
||||
Title: strings.Title(osName) + "/" + archName,
|
||||
OS: osName,
|
||||
Arch: archName,
|
||||
Weight: weight,
|
||||
Total: 0,
|
||||
|
||||
Reference in New Issue
Block a user