From 04b3204dd168571635133d430a68175297282b1f Mon Sep 17 00:00:00 2001 From: jvr Date: Tue, 14 May 2002 12:09:10 +0000 Subject: [PATCH] fixed typo in comment git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@230 4cde692c-a291-49d1-8350-778aa11640f8 --- Lib/fontTools/ttLib/sfnt.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/fontTools/ttLib/sfnt.py b/Lib/fontTools/ttLib/sfnt.py index 664130c6b..ff88829aa 100644 --- a/Lib/fontTools/ttLib/sfnt.py +++ b/Lib/fontTools/ttLib/sfnt.py @@ -16,6 +16,7 @@ import struct, sstruct import Numeric import os + class SFNTReader: def __init__(self, file, checkChecksums=1): @@ -92,7 +93,7 @@ class SFNTWriter: """Write raw table data to disk.""" if self.tables.has_key(tag): # We've written this table to file before. If the length - # of the data is still the same, we allow overwritng it. + # of the data is still the same, we allow overwriting it. entry = self.tables[tag] if len(data) <> entry.length: from fontTools import ttLib