From 66ab70ee0b412929b9d4abcae7e0d6eceea5dfcf Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Thu, 15 Feb 2024 06:07:06 -0800 Subject: [PATCH] initial commits --- writeframebutton1target.go | 4 ++-- writeframebutton2target.go | 4 ++-- writeframebutton3target.go | 4 ++-- writeframebutton4target.go | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) 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) }