Fix spelling of argument names.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@831 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-01-26 03:12:10 +00:00
parent 525bd06073
commit 85091a1917

View file

@ -1,5 +1,5 @@
/* Interface for NSCoder for GNUStep
Copyright (C) 1995 Free Software Foundation, Inc.
Copyright (C) 1995, 1996 Free Software Foundation, Inc.
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
Date: 1995
@ -34,7 +34,7 @@
// Encoding Data
- (void) encodeArrayOfObjCType: (const char*)types
- (void) encodeArrayOfObjCType: (const char*)type
count: (unsigned)count
at: (const void*)array;
- (void) encodeBycopyObject: (id)anObject;
@ -52,9 +52,9 @@
// Decoding Data
- (void) decodeArrayOfObjCType: (const char*)types
count: (unsigned)count
at: (void*)address;
- (void) decodeArrayOfObjCType: (const char*)type
count: (unsigned)count
at: (void*)address;
- (NSData*) decodeDataObject;
- (id) decodeObject;
- (id) decodePropertyList;