From c5275e535fab8fd2ac7400d8ecfd69c51f9cd174 Mon Sep 17 00:00:00 2001
From: Jari Aalto <jari.aalto@cante.net>
Date: Mon, 10 May 2010 19:10:45 +0300
Subject: [PATCH] Fix spelling
Organization: Private
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit

Signed-off-by: Jari Aalto <jari.aalto@cante.net>
---
 tools/TagcollParser.h |    2 +-
 tools/Timing.h        |    8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/tools/TagcollParser.h b/tools/TagcollParser.h
index e1540da..5768843 100644
--- a/tools/TagcollParser.h
+++ b/tools/TagcollParser.h
@@ -290,7 +290,7 @@ struct TagcollOptions : public MainParser<CommandParser>
 		Help(TagcollOptions* cp) : OptionParser("help")
 		{
 			usage = "[command]";
-			description = "print help informations";
+			description = "print help information";
 		}
 	} help;
 
diff --git a/tools/Timing.h b/tools/Timing.h
index 3761162..1de0da6 100644
--- a/tools/Timing.h
+++ b/tools/Timing.h
@@ -53,7 +53,7 @@ public:
 		tag(tag)
 	{
 		if (times(&firsttms) == -1)
-			throw wibble::exception::System("reading timing informations");
+			throw wibble::exception::System("reading timing information");
 		lasttms = firsttms;
 	}
 
@@ -61,12 +61,12 @@ public:
 	{
 		struct tms curtms;
 		if (times(&curtms) == -1)
-			throw wibble::exception::System("reading timing informations");
+			throw wibble::exception::System("reading timing information");
 
 		std::string res = format(curtms, lasttms);
 
 		if (times(&lasttms) == -1)
-			throw wibble::exception::System("reading timing informations");
+			throw wibble::exception::System("reading timing information");
 	
 		return res;
 	}
@@ -75,7 +75,7 @@ public:
 	{
 		struct tms curtms;
 		if (times(&curtms) == -1)
-			throw wibble::exception::System("reading timing informations");
+			throw wibble::exception::System("reading timing information");
 
 		return format(curtms, firsttms);
 	}
-- 
1.7.0

