Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
phoboslab committed Nov 27, 2015
1 parent ae6be40 commit cc5a057
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Source/Ejecta/EJConvertTypedArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ typedef enum {
/*!
@function
@abstract Setup the JSContext for use of the Typed Array functions.
@param ctx The execution context to use.
@param ctx The execution context to use
*/
void JSContextPrepareTypedArrayAPI(JSContextRef ctx);

Expand All @@ -42,7 +42,7 @@ void JSContextPrepareTypedArrayAPI(JSContextRef ctx);
@abstract Returns a JavaScript value's Typed Array type
@param ctx The execution context to use.
@param value The JSObject whose Typed Array type you want to obtain.
@result A value of type JSTypedArrayType that identifies value's Typed Array type.
@result A value of type JSTypedArrayType that identifies value's Typed Array type
*/
JSTypedArrayType JSObjectGetTypedArrayType(JSContextRef ctx, JSObjectRef object);

Expand All @@ -60,8 +60,8 @@ JSObjectRef JSObjectMakeTypedArray(JSContextRef ctx, JSTypedArrayType arrayType,
@function
@abstract Returns a copy of the Typed Array's data
@param ctx The execution context to use.
@param value The JSObject whose Typed Array data pointer you want to obtain.
@result A copy of the Typed Array's data or NULL if the JSObject is not a Typed Array.
@param value The JSObject whose Typed Array data you want to obtain.
@result A copy of the Typed Array's data or NULL if the JSObject is not a Typed Array
*/
NSMutableData *JSObjectGetTypedArrayData(JSContextRef ctx, JSObjectRef object);

Expand Down

0 comments on commit cc5a057

Please sign in to comment.