|
From: <cm...@us...> - 2002-11-03 06:06:07
|
Update of /cvsroot/log4cocoa/log4cocoa
In directory usw-pr-cvs1:/tmp/cvs-serv14662
Modified Files:
L4WriterAppender.m L4Logger.m L4Configurator.m
L4Configurator.h
Log Message:
Fix more misspellings of 'initializer'.
Index: L4WriterAppender.m
===================================================================
RCS file: /cvsroot/log4cocoa/log4cocoa/L4WriterAppender.m,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- L4WriterAppender.m 25 Oct 2002 01:45:07 -0000 1.2
+++ L4WriterAppender.m 3 Nov 2002 06:06:03 -0000 1.3
@@ -24,7 +24,7 @@
- (id) initWithLayout: (L4Layout *) aLayout
fileHandle: (NSFileHandle *) aFileHandle
{
- [self init]; // call designated initalizer
+ [self init]; // call designated initializer
fileHandle= [aFileHandle retain];
[self setLayout: aLayout];
return self;
Index: L4Logger.m
===================================================================
RCS file: /cvsroot/log4cocoa/log4cocoa/L4Logger.m,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- L4Logger.m 3 Nov 2002 05:56:44 -0000 1.3
+++ L4Logger.m 3 Nov 2002 06:06:04 -0000 1.4
@@ -21,7 +21,7 @@
{
// Making sure that we capture the startup time of
// this application. This sanity check is also in
- // +[L4Configurator initalize] too.
+ // +[L4Configurator initialize] too.
//
[L4LoggingEvent startTime];
Index: L4Configurator.m
===================================================================
RCS file: /cvsroot/log4cocoa/log4cocoa/L4Configurator.m,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- L4Configurator.m 25 Oct 2002 01:32:05 -0000 1.2
+++ L4Configurator.m 3 Nov 2002 06:06:04 -0000 1.3
@@ -16,11 +16,11 @@
@implementation L4Configurator
-+ (void) initalize
++ (void) initialize
{
// Making sure that we capture the startup time of
// this application. This sanity check is also in
- // +[L4Logger initalize] too.
+ // +[L4Logger initialize] too.
//
[L4LoggingEvent startTime];
}
Index: L4Configurator.h
===================================================================
RCS file: /cvsroot/log4cocoa/log4cocoa/L4Configurator.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- L4Configurator.h 7 Oct 2002 07:52:11 -0000 1.1.1.1
+++ L4Configurator.h 3 Nov 2002 06:06:04 -0000 1.2
@@ -14,7 +14,7 @@
}
-+ (void) initalize;
++ (void) initialize;
+ (void) basicConfiguration;
+ (id) propertyForKey: (NSString *) aKey;
|