diff --git a/graph/patterns/enums.md b/graph/patterns/enums.md index 080435af..d5db72b1 100644 --- a/graph/patterns/enums.md +++ b/graph/patterns/enums.md @@ -69,7 +69,7 @@ By using an evolvable enum, instead, all we need to do is to add new members: ``` -Similarly speaking, if you find yourself using a `nullable` Enum, that is a indication that maybe what you are trying to model is something that has 3 states and an enum is more appropraite. For instance, let's assume we have a boolean property called `syncEnabled`, where `null` means that the value is undefined and inherited from the general tenant configuration. Instead of modelling like a boolean: +Similarly speaking, if you find yourself using a `nullable` Enum, that is a indication that maybe what you are trying to model is something that has 3 states and an enum is more appropriate. For instance, let's assume we have a boolean property called `syncEnabled`, where `null` means that the value is undefined and inherited from the general tenant configuration. Instead of modelling like a boolean: ```xml