diff --git a/main.go b/main.go
index c76bb9c..c7c4c6f 100644
--- a/main.go
+++ b/main.go
@@ -227,7 +227,7 @@ func generateBusSharingTable() string {
return htmlString
}
-func generatMultiWriterTable() string {
+func generateMultiWriterTable() string {
// Define the HTML template
htmlTemplate := `
VM Name | Cluster Name | Disk Label | Sharing Type |
{{range .}}{{.VmName}} | {{.ClusterName}} | {{.DiskLabel}} | {{.SharingType}} |
{{end}}
`
@@ -245,7 +245,7 @@ func generatMultiWriterTable() string {
// Convert the buffer to a string
htmlString := buf.String()
- fmt.Printf("generatMultiWriterTable : %s\n", htmlString)
+ fmt.Printf("generateMultiWriterTable : %s\n", htmlString)
return htmlString
}
@@ -351,7 +351,7 @@ func updateConfluenceMultiWriter(api *goconfluence.API, vCenterHostname string,
// Generate new content for confluence
//fmt.Printf("Current content: %s\n", c.Body.Storage.Value)
- newTable := generatMultiWriterTable()
+ newTable := generateMultiWriterTable()
newContent := updateHtml(c.Body.Storage.Value, vCenterHostname, newTable)
//fmt.Printf("New Content: %v\n", newContent)