I before E except after C when or used like an A as in neighbor and weigh

This commit is contained in:
cinder
2023-01-27 21:05:14 -06:00
parent 9782ada1e7
commit c9c84abe3d
5 changed files with 9 additions and 9 deletions

View File

@@ -910,7 +910,7 @@ namespace OpenMetaverse
/// <summary>Thread sync lock object</summary>
private readonly object m_InstantMessageLock = new object();
/// <summary>Raised when an ImprovedInstantMessage packet is recieved from the simulator, this is used for everything from
/// <summary>Raised when an ImprovedInstantMessage packet is received from the simulator, this is used for everything from
/// private messaging to friendship offers. The Dialog field defines what type of message has arrived</summary>
public event EventHandler<InstantMessageEventArgs> IM
{

View File

@@ -1029,7 +1029,7 @@ namespace OpenMetaverse
/// <summary>
/// Searches Places for land owned by the specified group
/// </summary>
/// <param name="groupID">ID of the group you want to recieve land list for (You must be a member of the group)</param>
/// <param name="groupID">ID of the group you want to receive land list for (You must be a member of the group)</param>
/// <returns>Transaction (Query) ID which can be associated with results from your request.</returns>
public UUID StartPlacesSearch(UUID groupID)
{
@@ -1055,7 +1055,7 @@ namespace OpenMetaverse
/// <param name="searchCategory">One of the values from the SearchCategory Struct, ie: Any, Linden, Newcomer</param>
/// <param name="searchText">A string containing a list of keywords to search for separated by a space character</param>
/// <param name="simulatorName">String Simulator Name to search in</param>
/// <param name="groupID">LLUID of group you want to recieve results for</param>
/// <param name="groupID">LLUID of group you want to receive results for</param>
/// <param name="transactionID">Transaction (Query) ID which can be associated with results from your request.</param>
/// <returns>Transaction (Query) ID which can be associated with results from your request.</returns>
public UUID StartPlacesSearch(DirFindFlags findFlags, ParcelCategory searchCategory, string searchText, string simulatorName,

View File

@@ -5395,7 +5395,7 @@ namespace OpenMetaverse.Messages.Linden
}
/// <summary>
/// Message recieved in response to request to change display name
/// Message received in response to request to change display name
/// </summary>
public class SetDisplayNameReplyMessage : IMessage
{
@@ -5434,7 +5434,7 @@ namespace OpenMetaverse.Messages.Linden
}
/// <summary>
/// Message recieved when someone nearby changes their display name
/// Message received when someone nearby changes their display name
/// </summary>
public class DisplayNameUpdateMessage : IMessage
{

View File

@@ -171,7 +171,7 @@ namespace OpenMetaverse
public int ConnectTime;
/// <summary>Total number of packets that have been resent</summary>
public int ResentPackets;
/// <summary>Total number of resent packets recieved</summary>
/// <summary>Total number of resent packets received</summary>
public int ReceivedResends;
/// <summary>Total number of pings sent to this simulator by this agent</summary>
public int SentPings;
@@ -180,7 +180,7 @@ namespace OpenMetaverse
/// <summary>
/// Incoming bytes per second
/// </summary>
/// <remarks>It would be nice to have this claculated on the fly, but
/// <remarks>It would be nice to have this calculated on the fly, but
/// this is far, far easier</remarks>
public int IncomingBPS;
/// <summary>
@@ -648,7 +648,7 @@ namespace OpenMetaverse
/// <summary>
/// Initiates connection to the simulator
/// </summary>
/// <param name="waitForAck">Should we block until ack for this packet is recieved</param>
/// <param name="waitForAck">Should we block until ack for this packet is received</param>
public void UseCircuitCode(bool waitForAck)
{
// Send the UseCircuitCode packet to initiate the connection

View File

@@ -119,7 +119,7 @@ namespace OpenMetaverse
// kick off an async receive. The Start() method will return, the
// actual receives will occur asynchronously and will be caught in
// AsyncEndRecieve().
// AsyncEndReceive().
AsyncBeginReceive();
}