Skip to content

Commit

Permalink
Added briefs to all Foundation and made some cleanups to docs
Browse files Browse the repository at this point in the history
Conflicts:

	Foundation/CPArray.j
	Foundation/CPBundle.j
	Foundation/CPCountedSet.j
	Foundation/CPIndexSet.j
	Foundation/CPTimer.j
	Foundation/CPURLConnection.j
  • Loading branch information
Ross Boucher committed May 30, 2009
1 parent f6bd4dd commit 8fb0abd
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Foundation/CPArray.j
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@
/*!
@ingroup foundation
@class CPArray
@brief A mutable array backed by a JavaScript Array.
A mutable array class backed by a JavaScript Array.
There is also a CPMutableArray class,
but it is just a child class of this class with an
Expand Down
1 change: 1 addition & 0 deletions Foundation/CPBundle.j
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

/*!
@ingroup foundation
@brief Groups information about an application's code & resources.
*/

@implementation CPBundle : CPObject
Expand Down
1 change: 1 addition & 0 deletions Foundation/CPCountedSet.j
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

/*!
@ingroup foundation
@brief An mutable collection of objects and counts of their instances.
*/
@implementation CPCountedSet : CPMutableSet
{
Expand Down
6 changes: 5 additions & 1 deletion Foundation/CPIndexSet.j
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@
/*!
@ingroup foundation
@class CPIndexSet
Instances of this class are collections of numbers. Each integer can appear in a collection only once.
@brief A collection of unique integers (indexes).
Instances of this class are collections of numbers. Each integer can appear
in a collection only once.
*/
@implementation CPIndexSet : CPObject
{
Expand Down
1 change: 1 addition & 0 deletions Foundation/CPTimer.j
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

/*!
@ingroup foundation
@brief A timer which can send a message after the given time interval.
*/
@implementation CPTimer : CPObject
{
Expand Down
4 changes: 2 additions & 2 deletions Foundation/CPURLConnection.j
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ var XMLHTTPRequestUninitialized = 0,

var CPURLConnectionDelegate = nil;

/*
/*!
@class CPURLConnection
@ingroup foundation
An interface to downloading content at a specified URL. Using one of the
Expand Down Expand Up @@ -76,7 +77,6 @@ var CPURLConnectionDelegate = nil;
@param connection the connection that received the authentication challenge.
*/

@implementation CPURLConnection : CPObject
{
CPURLRequest _request;
Expand Down

0 comments on commit 8fb0abd

Please sign in to comment.