jscript: Assorted spelling fixes.

This commit is contained in:
Frédéric Delanoy 2012-04-17 22:09:00 +02:00 committed by Alexandre Julliard
parent c5bcfbc5c5
commit 69f3d23045
6 changed files with 6 additions and 6 deletions

View File

@ -27,7 +27,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(jscript);
/*
* This IID is used to get jsdisp_t objecto from interface.
* We might consider using private insteface instead.
* We might consider using private interface instead.
*/
static const IID IID_IDispatchJS =
{0x719c3050,0xf9d3,0x11cf,{0xa4,0x93,0x00,0x40,0x05,0x23,0xa8,0xa6}};

View File

@ -364,7 +364,7 @@ static HRESULT disp_get_id(script_ctx_t *ctx, IDispatch *disp, BSTR name, DWORD
hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
if(FAILED(hres)) {
TRACE("unsing IDispatch\n");
TRACE("using IDispatch\n");
*id = 0;
return IDispatch_GetIDsOfNames(disp, &IID_NULL, &name, 1, 0, id);

View File

@ -99,7 +99,7 @@ static inline BOOL is_uri_unescaped(WCHAR c)
return c < 128 && uri_char_table[c] == 2;
}
/* Check that the character is one of the 69 nonblank characters as defined by ECMA-262 B.2.1 */
/* Check that the character is one of the 69 non-blank characters as defined by ECMA-262 B.2.1 */
static inline BOOL is_ecma_nonblank(const WCHAR c)
{
return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') ||

View File

@ -135,7 +135,7 @@ void *jsheap_grow(jsheap_t *heap, void *mem, DWORD size, DWORD inc)
}
ret = jsheap_alloc(heap, size+inc);
if(ret) /* FIXME: avoid coppying for custom blocks */
if(ret) /* FIXME: avoid copying for custom blocks */
memcpy(ret, mem, size);
return ret;
}

View File

@ -491,7 +491,7 @@ static int parse_numeric_literal(parser_ctx_t *ctx, literal_t **literal)
if(!l) {
if(*ctx->ptr == 'x' || *ctx->ptr == 'X') {
if(++ctx->ptr == ctx->end) {
ERR("unexpexted end of file\n");
ERR("unexpected end of file\n");
return 0;
}

View File

@ -3491,7 +3491,7 @@ static HRESULT RegExp_source(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DIS
break;
}
default:
FIXME("Unimplemnted flags %x\n", flags);
FIXME("Unimplemented flags %x\n", flags);
return E_NOTIMPL;
}