diff --git a/src/Maker/MakeEntity.php b/src/Maker/MakeEntity.php
index 2233763ad..bea68cd83 100644
--- a/src/Maker/MakeEntity.php
+++ b/src/Maker/MakeEntity.php
@@ -697,17 +697,17 @@ private function askRelationType(ConsoleStyle $io, string $entityClass, string $
$rows = [];
$rows[] = [
EntityRelation::MANY_TO_ONE,
- sprintf("Each %s relates to (has) one %s.\nEach %s can relate/has to (have) many %s objects", $originalEntityShort, $targetEntityShort, $targetEntityShort, $originalEntityShort),
+ sprintf("Each %s relates to (has) one %s.\nEach %s can relate to (can have) many %s objects", $originalEntityShort, $targetEntityShort, $targetEntityShort, $originalEntityShort),
];
$rows[] = ['', ''];
$rows[] = [
EntityRelation::ONE_TO_MANY,
- sprintf("Each %s relates can relate to (have) many %s objects.\nEach %s relates to (has) one %s", $originalEntityShort, $targetEntityShort, $targetEntityShort, $originalEntityShort),
+ sprintf("Each %s can relate to (can have) many %s objects.\nEach %s relates to (has) one %s", $originalEntityShort, $targetEntityShort, $targetEntityShort, $originalEntityShort),
];
$rows[] = ['', ''];
$rows[] = [
EntityRelation::MANY_TO_MANY,
- sprintf("Each %s relates can relate to (have) many %s objects.\nEach %s can also relate to (have) many %s objects", $originalEntityShort, $targetEntityShort, $targetEntityShort, $originalEntityShort),
+ sprintf("Each %s can relate to (can have) many %s objects.\nEach %s can also relate to (can also have) many %s objects", $originalEntityShort, $targetEntityShort, $targetEntityShort, $originalEntityShort),
];
$rows[] = ['', ''];
$rows[] = [