diff --git a/cli/Squidex.CLI/Directory.Build.props b/cli/Squidex.CLI/Directory.Build.props
index 2eae9b28..61036ed6 100644
--- a/cli/Squidex.CLI/Directory.Build.props
+++ b/cli/Squidex.CLI/Directory.Build.props
@@ -15,6 +15,6 @@
Squidex HeadlessCMS
true
snupkg
- 9.4
+ 9.5
diff --git a/cli/Squidex.CLI/Squidex.CLI/Commands/App_Sync.cs b/cli/Squidex.CLI/Squidex.CLI/Commands/App_Sync.cs
index f484383b..63bdac73 100644
--- a/cli/Squidex.CLI/Squidex.CLI/Commands/App_Sync.cs
+++ b/cli/Squidex.CLI/Squidex.CLI/Commands/App_Sync.cs
@@ -111,7 +111,7 @@ public sealed class InArguments : AppArguments
[Operand("folder", Description = "The target folder to synchronize.")]
public string Folder { get; set; }
- [Option('t', "targets", Description = "The targets to sync, e.g. 'contents' or 'schemas'. Use 'sync targets' to view all targets.")]
+ [Option('t', "targets", Description = "The targets to sync, e.g. ‘sync in -t contents -t schemas’. Use 'sync targets' to view all targets.")]
public string[] Targets { get; set; }
[Option("language", Description = "The content language to synchronize.")]
@@ -164,7 +164,7 @@ public sealed class OutArguments : AppArguments
[Operand("folder", Description = "The target folder to synchronize.")]
public string Folder { get; set; }
- [Option('t', "targets", Description = "The targets to sync, e.g. 'contents' or 'schemas'. Use 'sync targets' to view all targets.")]
+ [Option('t', "targets", Description = "The targets to sync, e.g. ‘sync out -t contents -t schemas’. Use 'sync targets' to view all targets.")]
public string[] Targets { get; set; }
[Option("describe", Description = "Create a README.md file.")]