Skip to content

Commit

Permalink
Updated documentation for pointer arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
logancollins committed Aug 7, 2012
1 parent aea0d09 commit 6a21e60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.mdown
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ Some C functions and Cocoa methods expect pointers to types. This introduces an
Creating a pointer will wrap a value in an opaque container, which will be passed properly to functions and methods which expect a pointer type.

Pointer arguments typically come in one of three flavors:
- **in**, in which the value is simply passed by reference
- **out**, in which the function or method may modify the value of the pointer on output
- **in**, where the value is simply passed by reference
- **out**, where the function or method may modify the value of the pointer on output
- **inout**, a combination of **in** and **out**

### In Arguments
Expand Down

0 comments on commit 6a21e60

Please sign in to comment.