From 7d40699f4637918fb31816253c8f68921b3acbed Mon Sep 17 00:00:00 2001 Message-Id: <7d40699f4637918fb31816253c8f68921b3acbed.1714857180.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 7 Aug 2000 19:50:18 +0000 Subject: [PATCH] Fix typo in comment. Organization: Straylight/Edgeware From: mdw --- exc.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/exc.h b/exc.h index 2792713..42bba1a 100644 --- a/exc.h +++ b/exc.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: exc.h,v 1.5 1999/12/10 23:42:04 mdw Exp $ + * $Id: exc.h,v 1.6 2000/08/07 19:50:18 mdw Exp $ * * Structured exception handling in C * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: exc.h,v $ + * Revision 1.6 2000/08/07 19:50:18 mdw + * Fix typo in comment. + * * Revision 1.5 1999/12/10 23:42:04 mdw * Change header file guard names. * @@ -137,7 +140,7 @@ * the type of the value field (see below). */ -/* --- Type type of an exception --- */ +/* --- Type of an exception --- */ typedef unsigned long exc_extype; -- [mdw]