diff --git a/09_type_compatibility.md b/09_type_compatibility.md
index c2c58d8..233493c 100644
--- a/09_type_compatibility.md
+++ b/09_type_compatibility.md
@@ -61,7 +61,7 @@ let y = { name: "Alice", location: "Seattle" };
 
 // TSError: тип Unable to compile TypeScript
 // src/main.ts (12,1): Type '{ name: string; location: string; }' is not assignable to type 'Named'.
-//  Property 'age' is missing in type '{ name: string; location: string; }'. (2322)
+// Property 'age' is missing in type '{ name: string; location: string; }'. (2322)
 x = y;
 ```