Skip to content

Commit be2fc14

Browse files
committed
fix typos
1 parent fcb13f7 commit be2fc14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/ClangImporter/ImportType.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,8 +482,8 @@ namespace {
482482
return Type();
483483

484484
auto size = type->getSize().getZExtValue();
485-
// An array of size N is importat as an N-element tuple which
486-
// takes very long to compile. We choose 4096 as the upper limit because
485+
// An array of size N is imported as an N-element tuple which
486+
// takes very long to compile. We chose 4096 as the upper limit because
487487
// we don't want to break arrays of size PATH_MAX.
488488
if (size > 4096)
489489
return Type();

0 commit comments

Comments
 (0)