Skip to content

Commit cb9805b

Browse files
committed
fix: typos
Signed-off-by: guoguangwu <[email protected]>
1 parent c50d43d commit cb9805b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gcsfs/file.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ func (o *GcsFile) Seek(newOffset int64, whence int) (int64, error) {
109109
return o.fhOffset, nil
110110
}
111111
log.Printf(
112-
"WARNING: Seek behavior triggered, highly inefficent. Offset before seek is at %d\n",
112+
"WARNING: Seek behavior triggered, highly inefficient. Offset before seek is at %d\n",
113113
o.fhOffset,
114114
)
115115

gcsfs/file_resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ func (o *gcsFileResource) maybeCloseWriter() error {
9797
if err != nil {
9898
return fmt.Errorf(
9999
"couldn't simulate a partial write; the closing (and thus"+
100-
" the whole file write) is NOT commited to GCS. %v", err)
100+
" the whole file write) is NOT committed to GCS. %v", err)
101101
}
102102
if currentFile != nil && currentFile.Remain() > 0 {
103103
if _, err := io.Copy(o.writer, currentFile); err != nil {

0 commit comments

Comments
 (0)