diff --git a/documentation/docs/bitloops-language/how-to-guides/define-a-dto.md b/documentation/docs/bitloops-language/how-to-guides/define-a-dto.md index d1460989..a435251a 100644 --- a/documentation/docs/bitloops-language/how-to-guides/define-a-dto.md +++ b/documentation/docs/bitloops-language/how-to-guides/define-a-dto.md @@ -37,5 +37,3 @@ DTO HExampleResponseDTO { ``` By default, all parameters are required (unless optional is used in front) and errors will be thrown in the controllers if parameters are missing. - -To learn more about DTOs, read our reference guide on [DTOs](https://bitloops.com/docs/bitloops-language/reference/dto) diff --git a/documentation/docs/bitloops-language/how-to-guides/define-an-entity.md b/documentation/docs/bitloops-language/how-to-guides/define-an-entity.md index ca242c69..c683e5a6 100644 --- a/documentation/docs/bitloops-language/how-to-guides/define-an-entity.md +++ b/documentation/docs/bitloops-language/how-to-guides/define-an-entity.md @@ -18,7 +18,7 @@ Entity TitleEntity { } ``` -Now, in Bitloops Language specifically, to ensure good coding practice, there is the concept of [Root Entity](https://bitloops.com/docs/bitloops-language/reference/entity). This is a special type of Entity as its the Entity that can be referenced by other objects in the application. +Now, in Bitloops Language specifically, to ensure good coding practice, there is the concept of Root Entity. This is a special type of Entity as its the Entity that can be referenced by other objects in the application. To declare this type of Entity, you should simply add Root as a prefix: