summaryrefslogtreecommitdiff
path: root/fpdf.go
diff options
context:
space:
mode:
Diffstat (limited to 'fpdf.go')
-rw-r--r--fpdf.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdf.go b/fpdf.go
index 620e742..c482cb7 100644
--- a/fpdf.go
+++ b/fpdf.go
@@ -4245,7 +4245,7 @@ func (f *Fpdf) putimages() {
keyList = append(keyList, key)
}
- // Sort the keyList []string by the corrosponding image's width.
+ // Sort the keyList []string by the corresponding image's width.
if f.catalogSort {
sort.SliceStable(keyList, func(i, j int) bool { return f.images[keyList[i]].w < f.images[keyList[j]].w })
}