mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
525bd06073
commit
85091a1917
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue