diff --git a/chapter1/index.md b/chapter1/index.md index 5562ddd..3d2775c 100644 --- a/chapter1/index.md +++ b/chapter1/index.md @@ -224,7 +224,7 @@ In the past you did have to write the `property` keyword for properties, and Edg type City { # required name: str; <-- Current syntax required property name -> str; # <-- Old syntax - # modern name: str; <-- Current syntax + # modern_name: str; <-- Current syntax property modern_name -> str; # <-- Old syntax } ```