Skip to content

Commit 548fd82

Browse files
authored
Merge pull request stepcode#401 from luzpaz/typos
Fix typos
2 parents 2375f10 + 9285090 commit 548fd82

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/exp2python/python/SCL/Model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
3131
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3232

33-
class Model(objet):
33+
class Model(object):
3434
""" The container for entity instances
3535
"""
3636
def __init_(self):

src/exp2python/python/SCL/SimpleDataTypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class STRING(str):
117117
318 width_spec = '(' width ')' [ FIXED ] .
118118
317 width = numeric_expression .
119119
A string data type may be defined as either fixed or varying width (number of characters). If
120-
it is not specfically defined as fixed width (by using the fixed reserved word in the dfinition)
120+
it is not specifically defined as fixed width (by using the fixed reserved word in the definition)
121121
the string has varying width.
122122
123123
The domain of a fixed width string data type is the set of all character sequences of exactly

0 commit comments

Comments
 (0)