From 32bbfc3c89b1c56672bf2fd3660a45c513ac54d4 Mon Sep 17 00:00:00 2001
From: Alexander Chemeris <Alexander.Chemeris@gmail.com>
Date: Sun, 16 Dec 2012 17:33:46 +0400
Subject: [PATCH 1/4] Fix typos in comments.

---
 CommonLibs/Logger.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@4635 19bc5d8c-e614-43d4-8b26-e1612bc8e597
diff --git a/CommonLibs/Logger.h b/CommonLibs/Logger.h
index 0a9b535..6b1c44d 100644
--- a/CommonLibs/Logger.h
+++ b/CommonLibs/Logger.h
@@ -73,7 +73,7 @@
 	protected:
 
 	std::ostringstream mStream;		///< This is where we buffer up the log entry.
-	int mPriority;					///< Priority of current repot.
+	int mPriority;					///< Priority of current report.
 	bool mDummyInit;
 
 	public:
@@ -84,7 +84,7 @@
 
 	Log(const char* name, const char* level=NULL, int facility=LOG_USER);
 
-	// Most of the work is in the desctructor.
+	// Most of the work is in the destructor.
 	/** The destructor actually generates the log entry. */
 	~Log();