Fixed several typos in comments.

This commit is contained in:
Jason Watkins
2015-05-12 14:32:35 -07:00
parent 236cdc02fa
commit 8e46a90557
3 changed files with 4 additions and 4 deletions

View File

@@ -139,7 +139,7 @@ namespace XPC
/// Maps X-Plane dataref lines to XPC DREF values.
extern DREF XPData[134][8];
/// Marshals data between the plugin and X-Plane.
/// Contains methods to martial data between the plugin and X-Plane.
///
/// \author Jason Watkins
/// \version 1.1
@@ -165,7 +165,7 @@ namespace XPC
/// \remarks The first time this method is called for a given dataref, it must
/// perform a relatively expensive lookup operation to translate the
/// given string into an X-Plane internal pointer. This value is cached,
/// so subsequent calls will incure minimal extra overhead compared to
/// so subsequent calls will incur minimal extra overhead compared to
/// the other methods in this class.
///
/// \remarks For simplicity, this method is provided with only one output type.

View File

@@ -6,7 +6,7 @@
// LOG_VERBOSITY determines the level of logging throughout the plugin.
// OFF: No logging at all will be performed.
// FATAL: Critical errors that would normally resulti in termination of the program. Because XPC
// FATAL: Critical errors that would normally result in termination of the program. Because XPC
// operates in the X-Plane process, we try to never actually crash. As a result, we this
// level of logging may be the only indication of a problem.
// ERROR: All errors not covered by FATAL

View File

@@ -12,7 +12,7 @@ namespace XPC
/// A function that handles a message.
typedef void(*MessageHandler)(const Message&);
/// Handles incommming messages and manages connections.
/// Handles incoming messages and manages connections.
///
/// \author Jason Watkins
/// \version 1.1