diff --git a/content/building-emptystatement-and-semicolon-as-statement-ender-for-the-typescript-compiler/en/index.mdx b/content/building-emptystatement-and-semicolon-as-statement-ender-for-the-typescript-compiler/en/index.mdx index a9d5b01a..d0c95cd5 100644 --- a/content/building-emptystatement-and-semicolon-as-statement-ender-for-the-typescript-compiler/en/index.mdx +++ b/content/building-emptystatement-and-semicolon-as-statement-ender-for-the-typescript-compiler/en/index.mdx @@ -159,7 +159,7 @@ And when the compiler is checking the empty statement, we just need to return th ```tsx case Node.EmptyStatement: - return empty; + return empty; ``` ## Transforming and emitting JS @@ -175,7 +175,7 @@ The emitting process is pretty similar. When handling the emit for empty stateme ```tsx case Node.EmptyStatement: - return ''; + return ''; ``` That's it! We've finished the implementation of empty statements. To complement this feature, we are going to also implement semicolons as a statement ender.