diff --git a/src/TgSharp.Core/TelegramClient.cs b/src/TgSharp.Core/TelegramClient.cs
index 8dec139..0593697 100644
--- a/src/TgSharp.Core/TelegramClient.cs
+++ b/src/TgSharp.Core/TelegramClient.cs
@@ -51,8 +51,11 @@ namespace TgSharp.Core
/// A delegate to invoke when a connection is needed and that will return a TcpClient that will be used to connect
/// Indicates the preferred IpAddress version to use to connect to a Telegram server
public TelegramClient(int apiId, string apiHash,
- ISessionStore store = null, string sessionUserId = "session", TcpClientConnectionHandler handler = null,
- DataCenterIPVersion dcIpVersion = DataCenterIPVersion.Default)
+ DataCenterIPVersion dcIpVersion = DataCenterIPVersion.Default,
+ ISessionStore store = null,
+ string sessionUserId = "session",
+ TcpClientConnectionHandler handler = null
+ )
{
if (apiId == default(int))
throw new MissingApiConfigurationException("API_ID");