Geoffrey Teale 12 years ago
parent
commit
93266e4a34
3 changed files with 1 additions and 5 deletions
  1. 0 2
      lib.go
  2. 0 2
      lib_test.go
  3. 1 1
      workbook.go

+ 0 - 2
lib.go

@@ -35,13 +35,11 @@ type CellInterface interface {
 	String() string
 }
 
-
 // String returns the value of a Cell as a string.
 func (c *Cell) String() string {
 	return c.Value
 }
 
-
 // GetStyle returns the Style associated with a Cell
 func (c *Cell) GetStyle() *Style {
 	style := &Style{}

+ 0 - 2
lib_test.go

@@ -360,7 +360,6 @@ func TestReadWorkbookRelationsFromZipFile(t *testing.T) {
 	}
 }
 
-
 // We can extract a map of relationship Ids to the worksheet files in
 // which they are contained from the XLSX file, even when the
 // worksheet files have arbitrary, non-numeric names.
@@ -385,7 +384,6 @@ func TestReadWorkbookRelationsFromZipFileWithFunnyNames(t *testing.T) {
 	}
 }
 
-
 func TestLettersToNumeric(t *testing.T) {
 	cases := map[string]int{"A": 0, "G": 6, "z": 25, "AA": 26, "Az": 51,
 		"BA": 52, "Bz": 77, "ZA": 26*26 + 0, "ZZ": 26*26 + 25,

+ 1 - 1
workbook.go

@@ -8,7 +8,7 @@ import (
 )
 
 // xmlxWorkbookRels contains xmlxWorkbookRelations
-// which maps sheet id and sheet XML 
+// which maps sheet id and sheet XML
 type xlsxWorkbookRels struct {
 	Relationships []xlsxWorkbookRelation `xml:"Relationship"`
 }