| Index: tools/json_schema_compiler/model.py
|
| diff --git a/tools/json_schema_compiler/model.py b/tools/json_schema_compiler/model.py
|
| index de392d21a7776f764029a60e13eadbb645570127..cb569c6d921e5879f6a9f617a97e6b628729263b 100644
|
| --- a/tools/json_schema_compiler/model.py
|
| +++ b/tools/json_schema_compiler/model.py
|
| @@ -90,7 +90,7 @@ class Type(object):
|
| props = []
|
| for prop_name, prop_json in json.get('properties', {}).items():
|
| # TODO(calamity): support functions (callbacks) as properties. The model
|
| - # doesn't support it yet because to h/cc generators don't -- this is
|
| + # doesn't support it yet because the h/cc generators don't -- this is
|
| # because we'd need to hook it into a base::Callback or something.
|
| #
|
| # However, pragmatically it's not necessary to support them anyway, since
|
| @@ -328,4 +328,3 @@ def GetModelHierarchy(entity):
|
| entity = entity.parent
|
| hierarchy.reverse()
|
| return hierarchy
|
| -
|
|
|