Fix a few typos
This commit is contained in:
parent
caa52e0c51
commit
8cf85c3e5d
|
@ -60,7 +60,7 @@ Installation
|
|||
$> tuhi
|
||||
```
|
||||
|
||||
TUHI requires Python v3.6 or above.
|
||||
Tuhi requires Python v3.6 or above.
|
||||
|
||||
Units used by this interface
|
||||
----------------------------
|
||||
|
|
|
@ -595,8 +595,8 @@ class Fetcher(Worker):
|
|||
if dimensions == [0, 0]:
|
||||
width, height = 100, 100
|
||||
else:
|
||||
# Original diemnsions are too big for SVG Standard
|
||||
# so we nomalize them
|
||||
# Original dimensions are too big for SVG Standard
|
||||
# so we normalize them
|
||||
width, height = dimensions[0] / 100, dimensions[1] / 100
|
||||
|
||||
if self.orientation in ['Portrait', 'Reverse-Portrait']:
|
||||
|
|
Loading…
Reference in New Issue