summaryrefslogtreecommitdiff
path: root/cell.go
diff options
context:
space:
mode:
Diffstat (limited to 'cell.go')
-rw-r--r--cell.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cell.go b/cell.go
index 82e93c5..39990d4 100644
--- a/cell.go
+++ b/cell.go
@@ -468,7 +468,7 @@ type HyperlinkOpts struct {
// in this workbook. Maximum limit hyperlinks in a worksheet is 65530. The
// below is example for external link.
//
-// err := f.SetCellHyperLink("Sheet1", "A3", "https://github.com/360EntSecGroup-Skylar/excelize", "External")
+// err := f.SetCellHyperLink("Sheet1", "A3", "https://github.com/xuri/excelize", "External")
// // Set underline and font color style for the cell.
// style, err := f.NewStyle(`{"font":{"color":"#1265BE","underline":"single"}}`)
// err = f.SetCellStyle("Sheet1", "A3", "A3", style)
@@ -594,7 +594,7 @@ func (f *File) GetCellRichText(sheet, cell string) (runs []RichTextRun, err erro
// import (
// "fmt"
//
-// "github.com/360EntSecGroup-Skylar/excelize/v2"
+// "github.com/xuri/excelize/v2"
// )
//
// func main() {