]> git.mxchange.org Git - flightgear.git/commitdiff
Christoph Korn/PlayDeb.net: fix typos
authorThorstenB <brehmt@gmail.com>
Fri, 17 Aug 2012 21:51:30 +0000 (23:51 +0200)
committerThorstenB <brehmt@gmail.com>
Fri, 17 Aug 2012 21:51:30 +0000 (23:51 +0200)
src/AIModel/AIFlightPlanCreatePushBack.cxx
src/Airports/runways.hxx
src/Instrumentation/gps.cxx
src/Systems/electrical.cxx
tests/alcinfo.cxx

index 57cd9a78fbe8bb815275c142d78efdb7e70365a9..bf256bac94b29ec3cdc05c7b3156adf3f1346b19 100644 (file)
@@ -83,7 +83,7 @@ bool FGAIFlightPlan::createPushBack(FGAIAircraft *ac,
                 pushBackWaypoint(wpt);
             }
             //cerr << "Success : GateId = " << gateId << endl;
-            SG_LOG(SG_AI, SG_WARN, "Warning: Succesfully found a parking for a " <<
+            SG_LOG(SG_AI, SG_WARN, "Warning: Successfully found a parking for a " <<
                    aircraftType <<
                    " of flight type " << fltType <<
                    " of airline     " << airline <<
index 651f1e68ef478bfbee7175d645e365011d09824b..92647461ddd79acb2356aa6c06620dd720c816c4 100644 (file)
@@ -78,7 +78,7 @@ public:
   { return _isReciprocal; }
 
   /**
-   * Get the runway begining point - this is syntatic sugar, equivalent to
+   * Get the runway beginning point - this is syntatic sugar, equivalent to
    * calling pointOnCenterline(0.0);
    */
   SGGeod begin() const;
index e9a91dcaafb3e10328c477427362c70805304e9f..3d15e8e57a11a4ef4c5e1179483795772cabae54 100644 (file)
@@ -673,7 +673,7 @@ void GPS::referenceNavaidSet(const std::string& aNavaid)
 
   if (_ref_navaid) {
     _ref_navaid_set = true;
-    SG_LOG(SG_INSTR, SG_INFO, "GPS code set explict ref-navaid:" << _ref_navaid->ident());
+    SG_LOG(SG_INSTR, SG_INFO, "GPS code set explicit ref-navaid:" << _ref_navaid->ident());
     _ref_navaid_id_node->setStringValue(_ref_navaid->ident().c_str());
     _ref_navaid_name_node->setStringValue(_ref_navaid->name().c_str());
     FGNavRecord* vor = (FGNavRecord*) _ref_navaid.ptr();
@@ -855,7 +855,7 @@ void GPS::beginTurn()
 {
   _inTurn = true;
   _turnSequenced = false;
-  SG_LOG(SG_INSTR, SG_INFO, "begining turn");
+  SG_LOG(SG_INSTR, SG_INFO, "beginning turn");
 }
 
 void GPS::endTurn()
index 3ff556e282f3ec29981f0a144c8c5a4f50ae0b76..947df0aae21df1be1bcdc2bc84d060b7ce642e92 100644 (file)
@@ -638,7 +638,7 @@ float FGElectricalSystem::propagate( FGElectricalComponent *node, double dt,
         }
         // cout << s << "  input_volts = " << volts << endl;
     } else {
-        SG_LOG( SG_SYSTEMS, SG_ALERT, "unkown node type" );
+        SG_LOG( SG_SYSTEMS, SG_ALERT, "unknown node type" );
     }
 
     int i;
index 2f569390d11d22f1d935fa212cf3f93bf22ecc69..85d2a27ecdcac1f6eb15c720b5800780d55de86e 100644 (file)
@@ -145,7 +145,7 @@ int main(int argc, char **argv)
    if ((error = alGetError()) != AL_NO_ERROR)
       printf("Error #%x: %s\n", error, alGetString(error));
    else if (!s)
-      printf("Quering AL_VERSION returned NULL pointer!\n");
+      printf("Querying AL_VERSION returned NULL pointer!\n");
    else
       printf("OpenAL version string: %s\n", s);