From 8e46a905570c0b739a52044c9bf6fb78dc9742bf Mon Sep 17 00:00:00 2001 From: Jason Watkins Date: Tue, 12 May 2015 14:32:35 -0700 Subject: [PATCH] Fixed several typos in comments. --- xpcPlugin/DataManager.h | 4 ++-- xpcPlugin/Log.h | 2 +- xpcPlugin/MessageHandlers.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/xpcPlugin/DataManager.h b/xpcPlugin/DataManager.h index 7e896c7..178fb85 100644 --- a/xpcPlugin/DataManager.h +++ b/xpcPlugin/DataManager.h @@ -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. diff --git a/xpcPlugin/Log.h b/xpcPlugin/Log.h index 29d1d8d..d71eedb 100644 --- a/xpcPlugin/Log.h +++ b/xpcPlugin/Log.h @@ -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 diff --git a/xpcPlugin/MessageHandlers.h b/xpcPlugin/MessageHandlers.h index 857b0b8..13742ee 100644 --- a/xpcPlugin/MessageHandlers.h +++ b/xpcPlugin/MessageHandlers.h @@ -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