diff --git a/writeframebutton1target.go b/writeframebutton1target.go index c131408..12456d0 100644 --- a/writeframebutton1target.go +++ b/writeframebutton1target.go @@ -15,7 +15,7 @@ import ( // Would write this HTML element: // // -func WriteFrameButton1Target(writer io.Writer, url string) { +func WriteFrameButton1Target(writer io.Writer, target string) { const property string = MetaPropertyFrameButton1Target - writeMetaPropertyContent(writer, property, url) + writeMetaPropertyContent(writer, property, target) } diff --git a/writeframebutton2target.go b/writeframebutton2target.go index 4aeb6eb..57b1e1a 100644 --- a/writeframebutton2target.go +++ b/writeframebutton2target.go @@ -15,7 +15,7 @@ import ( // Would write this HTML element: // // -func WriteFrameButton2Target(writer io.Writer, url string) { +func WriteFrameButton2Target(writer io.Writer, target string) { const property string = MetaPropertyFrameButton2Target - writeMetaPropertyContent(writer, property, url) + writeMetaPropertyContent(writer, property, target) } diff --git a/writeframebutton3target.go b/writeframebutton3target.go index 303c119..f4f2e70 100644 --- a/writeframebutton3target.go +++ b/writeframebutton3target.go @@ -15,7 +15,7 @@ import ( // Would write this HTML element: // // -func WriteFrameButton3Target(writer io.Writer, url string) { +func WriteFrameButton3Target(writer io.Writer, target string) { const property string = MetaPropertyFrameButton3Target - writeMetaPropertyContent(writer, property, url) + writeMetaPropertyContent(writer, property, target) } diff --git a/writeframebutton4target.go b/writeframebutton4target.go index 6f147ab..bd4a57c 100644 --- a/writeframebutton4target.go +++ b/writeframebutton4target.go @@ -15,7 +15,7 @@ import ( // Would write this HTML element: // // -func WriteFrameButton4Target(writer io.Writer, url string) { +func WriteFrameButton4Target(writer io.Writer, target string) { const property string = MetaPropertyFrameButton4Target - writeMetaPropertyContent(writer, property, url) + writeMetaPropertyContent(writer, property, target) }