Change "eg." to "e.g."
authorRyan Schmidt <git@ryandesign.com>
Sun, 26 Aug 2018 02:12:45 +0000 (21:12 -0500)
committerRyan Schmidt <git@ryandesign.com>
Sun, 26 Aug 2018 02:12:45 +0000 (21:12 -0500)
RtAudio.cpp
RtAudio.h
doc/doxygen/probe.txt

index 59f5b0dd891cb1bdbfb9a7f3482b418cc477f11c..6d82ac1d28b19f56b29c19ad3a092a786c91bc4d 100644 (file)
@@ -3165,7 +3165,7 @@ bool RtApiAsio :: probeDeviceOpen( unsigned int device, StreamMode mode, unsigne
   result = ASIOCreateBuffers( handle->bufferInfos, nChannels, stream_.bufferSize, &asioCallbacks );
   if ( result != ASE_OK ) {
     // Standard method failed. This can happen with strict/misbehaving drivers that return valid buffer size ranges
-    // but only accept the preferred buffer size as parameter for ASIOCreateBuffers. eg. Creatives ASIO driver
+    // but only accept the preferred buffer size as parameter for ASIOCreateBuffers. e.g. Creatives ASIO driver
     // in that case, let's be naïve and try that instead
     *bufferSize = preferSize;
     stream_.bufferSize = *bufferSize;
index 34a2534859fab7dcd85d4434d472209a09d1bbe4..c60fbbb89ba718d6fc51cf23559ca1576fa9e988 100644 (file)
--- a/RtAudio.h
+++ b/RtAudio.h
@@ -298,7 +298,7 @@ class RTAUDIO_DLL_PUBLIC RtAudio
     bool isDefaultOutput;         /*!< true if this is the default output device. */
     bool isDefaultInput;          /*!< true if this is the default input device. */
     std::vector<unsigned int> sampleRates; /*!< Supported sample rates (queried from list of standard rates). */
-    unsigned int preferredSampleRate; /*!< Preferred sample rate, eg. for WASAPI the system sample rate. */
+    unsigned int preferredSampleRate; /*!< Preferred sample rate, e.g. for WASAPI the system sample rate. */
     RtAudioFormat nativeFormats;  /*!< Bit mask of supported data formats. */
 
     // Default constructor.
index 975ff0eda069d7df9744c5d8eef5d63b3d1af97a..69970009f29f02715625a2912cf0421ca3c28351 100644 (file)
@@ -45,7 +45,7 @@ The RtAudio::DeviceInfo structure is defined in RtAudio.h and provides a variety
     bool isDefaultOutput;                  // true if this is the default output device.
     bool isDefaultInput;                   // true if this is the default input device.
     std::vector<unsigned int> sampleRates; // Supported sample rates.
-    unsigned int preferredSampleRate;      // Preferred sample rate, eg. for WASAPI the system sample rate.
+    unsigned int preferredSampleRate;      // Preferred sample rate, e.g. for WASAPI the system sample rate.
     RtAudioFormat nativeFormats;           // Bit mask of supported data formats.
   };
 \endcode