From dda0daa449dd429cce0bd287af8be3b9d3167e5a Mon Sep 17 00:00:00 2001 From: Christian Blichmann Date: Tue, 26 Mar 2019 09:57:13 -0700 Subject: [PATCH] Fix typo PiperOrigin-RevId: 240368596 Change-Id: Id517ae6ecece98998316ba5a2672e075e037133a --- sandboxed_api/tools/generator2/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandboxed_api/tools/generator2/code.py b/sandboxed_api/tools/generator2/code.py index 9a2299d..47f9692 100644 --- a/sandboxed_api/tools/generator2/code.py +++ b/sandboxed_api/tools/generator2/code.py @@ -252,7 +252,7 @@ class Type(object): return result - raise ValueError('Unkhandled kind: {}'.format(self._clang_type.kind)) + raise ValueError('Unhandled kind: {}'.format(self._clang_type.kind)) def _get_related_types_of_typedef(self, result): # type: (Set[Type]) -> Set[Type]