summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2020-07-09 01:24:11 +0800
committerxuri <xuri.me@gmail.com>2020-07-09 01:24:11 +0800
commit49257c5918f3aa9f2730021a7e6a24b4835646fd (patch)
tree5b7e0b016bb008fd5680d19b59b05ab722a8d17b /README.md
parentf7bd0729c65fc82305328f7ac8fbaf329d1075c0 (diff)
support case-sensitive doc parts to improve compatibility
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index b3106df..97db54a 100644
--- a/README.md
+++ b/README.md
@@ -29,9 +29,9 @@ go get github.com/360EntSecGroup-Skylar/excelize
go get github.com/360EntSecGroup-Skylar/excelize/v2
```
-### Create XLSX file
+### Create spreadsheet
-Here is a minimal example usage that will create XLSX file.
+Here is a minimal example usage that will create spreadsheet file.
```go
package main
@@ -58,9 +58,9 @@ func main() {
}
```
-### Reading XLSX file
+### Reading spreadsheet
-The following constitutes the bare to read a XLSX document.
+The following constitutes the bare to read a spreadsheet document.
```go
package main
@@ -95,7 +95,7 @@ func main() {
}
```
-### Add chart to XLSX file
+### Add chart to spreadsheet file
With Excelize chart generation and management is as easy as a few lines of code. You can build charts based off data in your worksheet or generate charts without any data in your worksheet at all.
@@ -131,7 +131,7 @@ func main() {
}
```
-### Add picture to XLSX file
+### Add picture to spreadsheet file
```go
package main