diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentRingNoAnswerEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentRingNoAnswerEvent.cs
index efe0b64..9b0b2d9 100644
--- a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentRingNoAnswerEvent.cs
+++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentRingNoAnswerEvent.cs
@@ -6,8 +6,7 @@ using System.Text;
namespace AsterNET.Manager.Event
{
///
- /// Raised when a queue member is notified of a caller in the queue and fails to answer.
- ///
+ /// Raised when a queue member is notified of a caller in the queue and fails to answer.
/// See https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerEvent_AgentRingNoAnswer
///
public class AgentRingNoAnswerEvent : AbstractAgentVariables
@@ -23,32 +22,32 @@ namespace AsterNET.Manager.Event
///
- /// Gets or sets the queue.
+ /// Gets or sets the queue.
///
public string Queue { get; set; }
///
- /// Gets or sets the name of the agent.
+ /// Gets or sets the name of the agent.
///
public string AgentName { get; set; }
///
- /// Gets or sets the agent called.
+ /// Gets or sets the agent called.
///
public string AgentCalled { get; set; }
///
- /// Gets or sets the channel calling.
+ /// Gets or sets the channel calling.
///
public string ChannelCalling { get; set; }
///
- /// Gets or sets the destination channel.
+ /// Gets or sets the destination channel.
///
public string DestinationChannel { get; set; }
///
- /// Gets or sets the Caller*ID of the calling channel.
+ /// Gets or sets the Caller*ID of the calling channel.
///
public string CallerId { get; set; }
@@ -63,17 +62,17 @@ namespace AsterNET.Manager.Event
public string CallerIdName { get; set; }
///
- /// Gets or sets the context.
+ /// Gets or sets the context.
///
public string Context { get; set; }
///
- /// Gets or sets the extension.
+ /// Gets or sets the extension.
///
public string Extension { get; set; }
///
- /// Gets or sets the priority.
+ /// Gets or sets the priority.
///
public string Priority { get; set; }
diff --git a/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs b/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs
index e450fa2..f56b77e 100644
--- a/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs
+++ b/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs
@@ -120,8 +120,8 @@ namespace AsterNET.Manager
///
public event EventHandler AgentLogoff;
///
- /// An AgentRingNoAnswer is triggered when an agent was rang and did not answer.
- /// To enable AgentRingNoAnswer you have to set eventwhencalled = yes in queues.conf.
+ /// An AgentRingNoAnswer is triggered when an agent was rang and did not answer.
+ /// To enable AgentRingNoAnswer you have to set eventwhencalled = yes in queues.conf.
///
public event EventHandler AgentRingNoAnswer;
///