From fbb3343547c4215b59d8d53bd3c8d1e3ea6bef11 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 2 Mar 2005 13:53:50 +0000 Subject: [PATCH] Assorted spelling fixes. --- dlls/comctl32/rebar.c | 2 +- dlls/comctl32/syslink.c | 4 ++-- dlls/gdi/region.c | 4 ++-- dlls/kernel/process.c | 4 ++-- dlls/kernel/tests/file.c | 3 ++- dlls/msi/action.c | 14 +++++++------- dlls/msi/msi.c | 2 +- dlls/msvcrt/file.c | 2 +- dlls/ntdll/reg.c | 2 +- dlls/ole32/clipboard.c | 2 +- dlls/oleaut32/typelib.c | 2 +- dlls/oleaut32/varformat.c | 2 +- dlls/richedit/reader.c | 4 ++-- dlls/richedit/richedit.c | 2 +- dlls/shell32/clipboard.c | 2 +- dlls/shell32/shelllink.c | 4 ++-- dlls/shell32/shfldr_fs.c | 2 +- dlls/user/dde/dde_private.h | 2 +- dlls/user/tests/sysparams.c | 2 +- dlls/winedos/vxd.c | 2 +- dlls/winmm/wineoss/audio.c | 2 +- documentation/architecture.sgml | 2 +- documentation/getting.sgml | 2 +- include/objbase.h | 2 +- programs/cmdlgtst/cmdlgtst.c | 2 +- programs/wcmd/wcmdmain.c | 4 ++-- programs/wineboot/wineboot.c | 2 +- programs/winedbg/db_disasm.c | 2 +- programs/winevdm/winevdm.c | 4 ++-- tools/widl/client.c | 2 +- tools/winebuild/winebuild.man.in | 4 ++-- tools/winedump/pe.c | 6 +++--- tools/winedump/symbol.c | 4 ++-- tools/wrc/parser.y | 2 +- 34 files changed, 52 insertions(+), 51 deletions(-) diff --git a/dlls/comctl32/rebar.c b/dlls/comctl32/rebar.c index 5c98a68dde0..ee652bd39b2 100644 --- a/dlls/comctl32/rebar.c +++ b/dlls/comctl32/rebar.c @@ -1956,7 +1956,7 @@ REBAR_ValidateBand (REBAR_INFO *infoPtr, REBAR_BAND *lpBand) infoPtr->fStatus |= BAND_NEEDS_LAYOUT; /* Header is where the image, text and gripper exist */ - /* in the band and preceed the child window. */ + /* in the band and precede the child window. */ /* count number of non-FIXEDSIZE and non-Hidden bands */ nonfixed = 0; diff --git a/dlls/comctl32/syslink.c b/dlls/comctl32/syslink.c index dd82e02b4ec..5f359d8aed3 100644 --- a/dlls/comctl32/syslink.c +++ b/dlls/comctl32/syslink.c @@ -513,7 +513,7 @@ static VOID SYSLINK_RepaintLink (SYSLINK_INFO *infoPtr, PDOC_ITEM DocItem) /*********************************************************************** * SYSLINK_GetLinkItemByIndex - * Retreives a document link by it's index + * Retrieves a document link by its index */ static PDOC_ITEM SYSLINK_GetLinkItemByIndex (SYSLINK_INFO *infoPtr, int iLink) { @@ -532,7 +532,7 @@ static PDOC_ITEM SYSLINK_GetLinkItemByIndex (SYSLINK_INFO *infoPtr, int iLink) /*********************************************************************** * SYSLINK_GetFocusLink - * Retreives the link that has the LIS_FOCUSED bit + * Retrieves the link that has the LIS_FOCUSED bit */ static PDOC_ITEM SYSLINK_GetFocusLink (SYSLINK_INFO *infoPtr, int *LinkId) { diff --git a/dlls/gdi/region.c b/dlls/gdi/region.c index ef7786a298c..27d79147187 100644 --- a/dlls/gdi/region.c +++ b/dlls/gdi/region.c @@ -1207,7 +1207,7 @@ static void REGION_UnionRectWithRegion(const RECT *rect, WINEREGION *rgn) * Create a region that is a frame around another region. * Compute the intersection of the region moved in all 4 directions * ( +x, -x, +y, -y) and subtract from the original. - * The result looks slightly better then in Windows :) + * The result looks slightly better than in Windows :) */ BOOL REGION_FrameRgn( HRGN hDest, HRGN hSrc, INT x, INT y ) { @@ -2170,7 +2170,7 @@ static void REGION_SubtractO (WINEREGION *pReg, RECT *r1, RECT *r1End, else if (r2->left <= left) { /* - * Subtrahend preceeds minuend: nuke left edge of minuend. + * Subtrahend precedes minuend: nuke left edge of minuend. */ left = r2->right; if (left >= r1->right) diff --git a/dlls/kernel/process.c b/dlls/kernel/process.c index e4e379fc24c..147734788e5 100644 --- a/dlls/kernel/process.c +++ b/dlls/kernel/process.c @@ -608,7 +608,7 @@ static BOOL build_command_line( WCHAR **argv ) if (*a==' ' || *a=='\t') { has_space=1; } else if (*a=='"') { - /* doubling of '\' preceeding a '"', + /* doubling of '\' preceding a '"', * plus escaping of said '"' */ len+=2*bcount+1; @@ -667,7 +667,7 @@ static BOOL build_command_line( WCHAR **argv ) if (*a=='"') { int i; - /* Double all the '\\' preceeding this '"', plus one */ + /* Double all the '\\' preceding this '"', plus one */ for (i=0;i<=bcount;i++) *p++='\\'; *p++='"'; diff --git a/dlls/kernel/tests/file.c b/dlls/kernel/tests/file.c index e4f8c3857c8..e54f32a28d4 100644 --- a/dlls/kernel/tests/file.c +++ b/dlls/kernel/tests/file.c @@ -583,8 +583,9 @@ static void test_CopyFileA(void) ok(ret == sizeof(prefix), "destination file has wrong size %ld\n", ret); /* make sure that destination has the same filetime */ + ok(ret = GetFileTime(hfile, NULL, NULL, &ft1), "GetFileTime error %ld\n", GetLastError()); ok(ret = GetFileTime(hfile, NULL, NULL, &ft2), "GetFileTime error %ld\n", GetLastError()); - ok(CompareFileTime(&ft1, &ft2) == 0, "destination file has wrong filetime"); + ok(CompareFileTime(&ft1, &ft2) == 0, "destination file has wrong filetime\n"); SetLastError(0xdeadbeef); ret = CopyFileA(source, dest, FALSE); diff --git a/dlls/msi/action.c b/dlls/msi/action.c index d66489a653c..5a6228d2bc0 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -2299,8 +2299,8 @@ static UINT SetFeatureStates(MSIPACKAGE *package) install_level = 1; /* ok hereis the _real_ rub - * all these activation/deactiontion things happen in order and things later - * on the list override things earlier on the list. + * all these activation/deactivation things happen in order and things + * later on the list override things earlier on the list. * 1) INSTALLLEVEL processing * 2) ADDLOCAL * 3) REMOVE @@ -2312,13 +2312,13 @@ static UINT SetFeatureStates(MSIPACKAGE *package) * 9) FILEADDLOCAL * 10) FILEADDSOURCE * 11) FILEADDDEFAULT - * I have confirmed this if ADDLOCALis stated then the INSTALLLEVEL is - * itnored for all the features. seems strange, epsecially since it is not + * I have confirmed that if ADDLOCAL is stated then the INSTALLLEVEL is + * ignored for all the features. seems strange, especially since it is not * documented anywhere, but it is how it works. * - * I am still ignoring alot of these. But that is ok for now, ADDLOCAL and - * REMOVE are the big ones, since we dont handle administrative installs yet - * anyway. + * I am still ignoring a lot of these. But that is ok for now, ADDLOCAL and + * REMOVE are the big ones, since we don't handle administrative installs + * yet anyway. */ override |= process_state_property(package,szAddLocal,INSTALLSTATE_LOCAL); override |= process_state_property(package,szRemove,INSTALLSTATE_ABSENT); diff --git a/dlls/msi/msi.c b/dlls/msi/msi.c index e956b988b2a..9b91493e9c1 100644 --- a/dlls/msi/msi.c +++ b/dlls/msi/msi.c @@ -1176,7 +1176,7 @@ INSTALLSTATE WINAPI MsiGetComponentPathW(LPCWSTR szProduct, LPCWSTR szComponent, } else { - /* PROBIBLY a file */ + /* PROBABLY a file */ if ( GetFileAttributesW(path) != INVALID_FILE_ATTRIBUTES ) rrc = INSTALLSTATE_LOCAL; else diff --git a/dlls/msvcrt/file.c b/dlls/msvcrt/file.c index f266c3e5c33..34d1176a7a0 100644 --- a/dlls/msvcrt/file.c +++ b/dlls/msvcrt/file.c @@ -1971,7 +1971,7 @@ int _write(int fd, const void* buf, unsigned int count) { unsigned int i, j, nr_lf; char *s =(char*)buf, *buf_start=(char*)buf, *p; - /* find number of \n ( without preceeding \r */ + /* find number of \n ( without preceding \r ) */ for ( nr_lf=0,i = 0; i pTypeLib); } else { FIXME("destroy child objects\n"); diff --git a/dlls/oleaut32/varformat.c b/dlls/oleaut32/varformat.c index c1c02dd567a..32770f8e5cf 100644 --- a/dlls/oleaut32/varformat.c +++ b/dlls/oleaut32/varformat.c @@ -94,7 +94,7 @@ static const WCHAR szPercentZeroStar_d[] = { '%','0','*','d','\0' }; * characters. Literal characters are copied unmodified to the formatted * output at the position they occupy in the format string. Any character * that is not recognised as a token is treated as a literal. A literal can - * also be specified by preceeding it with a backslash character + * also be specified by preceding it with a backslash character * (e.g. "\L\i\t\e\r\a\l") or enclosing it in double quotes. * * A user-defined format can have up to 4 sections, depending on the type of diff --git a/dlls/richedit/reader.c b/dlls/richedit/reader.c index 571a66d956c..6c365464555 100644 --- a/dlls/richedit/reader.c +++ b/dlls/richedit/reader.c @@ -887,8 +887,8 @@ char buf[rtfBufSiz]; /* - * Convert a CaracterSetMap (caracter_name, caracter) into - * this form : array[caracter_ident] = caracter; + * Convert a CharSetMap (character_name, character) into + * this form : array[character_ident] = character; */ int RTFReadCharSetMap(RTF_Info *info, int csId) diff --git a/dlls/richedit/richedit.c b/dlls/richedit/richedit.c index 86909ab4a11..7459983d5af 100644 --- a/dlls/richedit/richedit.c +++ b/dlls/richedit/richedit.c @@ -149,7 +149,7 @@ static LRESULT WINAPI RICHED32_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, newstyle &= ~ES_NUMBER; /* Reused as ES_DISABLENOSCROLL */ SetWindowLongA(hwnd,GWL_STYLE, newstyle); - /* Note that SetWindowLongA(hwnd,GWL_STYLE...) doesnt update + /* Note that SetWindowLongA(hwnd,GWL_STYLE...) does not update the style field in the text window as the edit structure is not initialized until it processes this message. Therefore update the style in the message itself */ diff --git a/dlls/shell32/clipboard.c b/dlls/shell32/clipboard.c index 71c929365b9..9f06d9703d3 100644 --- a/dlls/shell32/clipboard.c +++ b/dlls/shell32/clipboard.c @@ -26,7 +26,7 @@ * - a right mousebutton-copy sets the following formats: * classic: * Shell IDList Array - * Prefered Drop Effect + * Preferred Drop Effect * Shell Object Offsets * HDROP * FileName diff --git a/dlls/shell32/shelllink.c b/dlls/shell32/shelllink.c index de3ace348c6..ebb8287585f 100644 --- a/dlls/shell32/shelllink.c +++ b/dlls/shell32/shelllink.c @@ -650,7 +650,7 @@ static HRESULT Stream_LoadAdvertiseInfo( IStream* stm, LPWSTR *str ) size = sizeof buffer - sizeof (DWORD); if( buffer.size != sizeof buffer ) { - ERR("Ooops. This structure is different to expected...\n"); + ERR("Ooops. This structure is not as expected...\n"); return E_FAIL; } @@ -865,7 +865,7 @@ static HRESULT Stream_WriteString( IStream* stm, LPCWSTR str ) * * FIXME: One day we might want to write the network volume information * and the final path. - * Figure out how Windows deals with unicode pathes here. + * Figure out how Windows deals with unicode paths here. */ static HRESULT Stream_WriteLocationInfo( IStream* stm, LPCWSTR path, volume_info *volume ) diff --git a/dlls/shell32/shfldr_fs.c b/dlls/shell32/shfldr_fs.c index 348db84082c..41c6e1d543e 100644 --- a/dlls/shell32/shfldr_fs.c +++ b/dlls/shell32/shfldr_fs.c @@ -303,7 +303,7 @@ static ULONG WINAPI IShellFolder_fnRelease (IShellFolder2 * iface) * * If the caller bound File System Bind Data, assume it is the * find data for the path. - * This allows binding of pathes that don't exist. + * This allows binding of paths that don't exist. */ LPITEMIDLIST SHELL32_CreatePidlFromBindCtx(IBindCtx *pbc, LPCWSTR path) { diff --git a/dlls/user/dde/dde_private.h b/dlls/user/dde/dde_private.h index e70b40bb11c..1c4c2801e3c 100644 --- a/dlls/user/dde/dde_private.h +++ b/dlls/user/dde/dde_private.h @@ -40,7 +40,7 @@ * - a popup window (InstanceClass) is created for each instance. * - this window is used to receive all the DDEML events (server registration, * conversation confirmation...). See the WM_WDML_???? messages for details - * + when registring a server (DdeNameService) a WDML_SERVER is created + * + when registering a server (DdeNameService) a WDML_SERVER is created * - a popup window (ServerNameClass) is created * + a conversation is represented by two WDML_CONV structures: * - one on the client side, the other one on the server side diff --git a/dlls/user/tests/sysparams.c b/dlls/user/tests/sysparams.c index 71fffa6eb5f..1b1f2fa10ca 100644 --- a/dlls/user/tests/sysparams.c +++ b/dlls/user/tests/sysparams.c @@ -1092,7 +1092,7 @@ static void test_SPI_SETWORKAREA( void ) /* 47 */ /* Modify the work area only minimally as this causes the icons that * fall outside it to be moved around thus requiring the user to * reposition them manually one by one. - * Changing the work area by just one pixel should make this occurence + * Changing the work area by just one pixel should make this occurrence * reasonably unlikely. */ curr_val.left = old_area.left; diff --git a/dlls/winedos/vxd.c b/dlls/winedos/vxd.c index ca7d8c3ed01..bbd09a4546c 100644 --- a/dlls/winedos/vxd.c +++ b/dlls/winedos/vxd.c @@ -623,7 +623,7 @@ void WINAPI VXD_Win32s( CONTEXT86 *context ) * and StackLinearToSegmented for the byte sequence '0F 01 04' * (this is the opcode of 'sgdt [si]'). We then search backwards * from this address for the last occurrence of 'CB' (retf) that marks - * the end of the preceeding function. The following byte (which + * the end of the preceding function. The following byte (which * should now be the first byte of the function we are looking for) * will be replaced by 'CB' (retf). * diff --git a/dlls/winmm/wineoss/audio.c b/dlls/winmm/wineoss/audio.c index 9d76a451883..0d4cd983c83 100644 --- a/dlls/winmm/wineoss/audio.c +++ b/dlls/winmm/wineoss/audio.c @@ -1322,7 +1322,7 @@ static BOOL wodUpdatePlayedTotal(WINE_WAVEOUT* wwo, audio_buf_info* info) } /* GETOSPACE is not always accurate when we're down to the last fragment or two; - ** we try to accomodate that here by assuming that the dsp is empty by looking + ** we try to accommodate that here by assuming that the dsp is empty by looking ** at the clock rather than the result of GETOSPACE */ notplayed = wwo->dwBufferSize - info->bytes; if (notplayed > 0 && notplayed < (info->fragsize * 2)) diff --git a/documentation/architecture.sgml b/documentation/architecture.sgml index 62f9f89426a..a7174027720 100644 --- a/documentation/architecture.sgml +++ b/documentation/architecture.sgml @@ -300,7 +300,7 @@ Win 9x roots its architecture in 16 bit systems, while - NT is truely a 32 bit system. + NT is truly a 32 bit system. diff --git a/documentation/getting.sgml b/documentation/getting.sgml index e7270fefb7d..f717c05fe8b 100644 --- a/documentation/getting.sgml +++ b/documentation/getting.sgml @@ -5,7 +5,7 @@ Once you've decided that Wine is right for your needs, the next step is to decide how you want to install it. There are three methods for - installing Wine from Winehq, each with their own advantages and + installing Wine from WineHQ, each with their own advantages and disadvantages. diff --git a/include/objbase.h b/include/objbase.h index 51126128677..5f58bb0d5e0 100644 --- a/include/objbase.h +++ b/include/objbase.h @@ -98,7 +98,7 @@ * - Finally the set of 'IDirect3D_Xxx' macros is a standard set of macros defined to ease access * to the interface methods in C. Unfortunately I don't see any way to avoid having to duplicate * the inherited method definitions there. This time I could have used a trick to use only one - * macro whatever the number of parameters but I prefered to have it work the same way as above. + * macro whatever the number of parameters but I preferred to have it work the same way as above. * - You probably have noticed that we don't define the fields we need to actually implement this * interface: reference count, pointer to other resources and miscellaneous fields. That's * because these interfaces are just that: interfaces. They may be implemented more than once, in diff --git a/programs/cmdlgtst/cmdlgtst.c b/programs/cmdlgtst/cmdlgtst.c index 6309512d4bb..3f9dd82a630 100644 --- a/programs/cmdlgtst/cmdlgtst.c +++ b/programs/cmdlgtst/cmdlgtst.c @@ -728,7 +728,7 @@ LRESULT CALLBACK EXPORT mainWindowDispatcher( MessageBox(hWnd, "Finding next occurrence.", "Findnext", MB_OK); } else if (lpfr->Flags & FR_REPLACE) { - MessageBox(hWnd, "Replacing next occurence.", "Replace", MB_OK); + MessageBox(hWnd, "Replacing next occurrence.", "Replace", MB_OK); } else if (lpfr->Flags & FR_REPLACEALL) { MessageBox(hWnd, "Replacing all occurrences.", "Replace All", MB_OK); diff --git a/programs/wcmd/wcmdmain.c b/programs/wcmd/wcmdmain.c index bd127159c7a..97fd436f449 100644 --- a/programs/wcmd/wcmdmain.c +++ b/programs/wcmd/wcmdmain.c @@ -107,7 +107,7 @@ int main (int argc, char *argv[]) if (*a==' ' || *a=='\t') { has_space=1; } else if (*a=='"') { - /* doubling of '\' preceeding a '"', + /* doubling of '\' preceding a '"', * plus escaping of said '"' */ len+=2*bcount+1; @@ -165,7 +165,7 @@ int main (int argc, char *argv[]) if (*a=='"') { int i; - /* Double all the '\\' preceeding this '"', plus one */ + /* Double all the '\\' preceding this '"', plus one */ for (i=0;i<=bcount;i++) *p++='\\'; *p++='"'; diff --git a/programs/wineboot/wineboot.c b/programs/wineboot/wineboot.c index 4a93ad4f6fa..a7c4f08dbb1 100644 --- a/programs/wineboot/wineboot.c +++ b/programs/wineboot/wineboot.c @@ -223,7 +223,7 @@ static BOOL pendingRename() } res=RegQueryValueExW( hSession, ValueName, NULL, NULL /* The value type does not really interest us, as it is not - truely a REG_MULTI_SZ anyways */, + truly a REG_MULTI_SZ anyways */, NULL, &dataLength ); if( res==ERROR_FILE_NOT_FOUND ) { diff --git a/programs/winedbg/db_disasm.c b/programs/winedbg/db_disasm.c index 6b29c419f3c..9220e05f2a2 100644 --- a/programs/winedbg/db_disasm.c +++ b/programs/winedbg/db_disasm.c @@ -1215,7 +1215,7 @@ static void db_print_address(const char *seg, int size, struct i_addr *addrp, in else { /* try to get destination of indirect call - does not work for segmented adresses */ + does not work for segmented addresses */ if (!seg && byref) { void* a1; void* a2; diff --git a/programs/winevdm/winevdm.c b/programs/winevdm/winevdm.c index df2ec9e3290..ede908c650e 100644 --- a/programs/winevdm/winevdm.c +++ b/programs/winevdm/winevdm.c @@ -59,7 +59,7 @@ static char *build_command_line( char **argv ) if (*a==' ' || *a=='\t') { has_space=1; } else if (*a=='"') { - /* doubling of '\' preceeding a '"', + /* doubling of '\' preceding a '"', * plus escaping of said '"' */ len+=2*bcount+1; @@ -117,7 +117,7 @@ static char *build_command_line( char **argv ) if (*a=='"') { int i; - /* Double all the '\\' preceeding this '"', plus one */ + /* Double all the '\\' preceding this '"', plus one */ for (i=0;i<=bcount;i++) *p++='\\'; *p++='"'; diff --git a/tools/widl/client.c b/tools/widl/client.c index 8dfb364a209..4f2db511fb9 100644 --- a/tools/widl/client.c +++ b/tools/widl/client.c @@ -195,7 +195,7 @@ static void write_function_stubs(type_t *iface) fprintf(client, "\n"); - /* send/recieve message */ + /* send/receive message */ /* print_client("NdrNsSendReceive(\n"); */ print_client("NdrSendReceive(\n"); indent++; diff --git a/tools/winebuild/winebuild.man.in b/tools/winebuild/winebuild.man.in index 4f47749fc9e..903afcac236 100644 --- a/tools/winebuild/winebuild.man.in +++ b/tools/winebuild/winebuild.man.in @@ -356,7 +356,7 @@ specified. will be the name available for dynamic linking. .I data -can be a decimal number or a hex number preceeded by "0x". The +can be a decimal number or a hex number preceded by "0x". The following example defines the variable VariableA at ordinal 2 and containing 4 ints: .IP @@ -404,7 +404,7 @@ This declaration defines an ordinal as an absolute value. .I exportname will be the name available for dynamic linking. .I data -can be a decimal number or a hex number preceeded by "0x". +can be a decimal number or a hex number preceded by "0x". .SH AUTHORS .B winebuild has been worked on by many people over the years. The main authors are diff --git a/tools/winedump/pe.c b/tools/winedump/pe.c index ffd13776027..f6f2a7c8c85 100644 --- a/tools/winedump/pe.c +++ b/tools/winedump/pe.c @@ -355,9 +355,9 @@ static void dump_dir_exported_functions(void) printf(" Ordinal base: %lu\n", exportDir->Base); printf(" # of functions: %lu\n", exportDir->NumberOfFunctions); printf(" # of Names: %lu\n", exportDir->NumberOfNames); - printf("Adresses of functions: %08lX\n", exportDir->AddressOfFunctions); - printf("Adresses of name ordinals: %08lX\n", exportDir->AddressOfNameOrdinals); - printf("Adresses of names: %08lX\n", exportDir->AddressOfNames); + printf("Addresses of functions: %08lX\n", exportDir->AddressOfFunctions); + printf("Addresses of name ordinals: %08lX\n", exportDir->AddressOfNameOrdinals); + printf("Addresses of names: %08lX\n", exportDir->AddressOfNames); printf("\n"); printf(" Entry Pt Ordn Name\n"); diff --git a/tools/winedump/symbol.c b/tools/winedump/symbol.c index 11105b3d00b..bcbed8a0d74 100644 --- a/tools/winedump/symbol.c +++ b/tools/winedump/symbol.c @@ -46,7 +46,7 @@ static const char *swap_after[] = /* Items containing these substrings are assumed to be wide character - * strings, unless they contain more that one '*'. A preceeding 'LP' + * strings, unless they contain more that one '*'. A preceding 'LP' * counts as a '*', so 'LPWCSTR *' is a pointer, not a string */ static const char *wide_strings[] = @@ -55,7 +55,7 @@ static const char *wide_strings[] = }; /* Items containing these substrings are assumed to be wide characters, - * unless they contain one '*'. A preceeding 'LP' counts as a '*', + * unless they contain one '*'. A preceding 'LP' counts as a '*', * so 'WCHAR *' is string, while 'LPWCHAR *' is a pointer */ static const char *wide_chars[] = diff --git a/tools/wrc/parser.y b/tools/wrc/parser.y index 2b61f394daa..099cb9545c3 100644 --- a/tools/wrc/parser.y +++ b/tools/wrc/parser.y @@ -458,7 +458,7 @@ resources * for tNL. However, byacc already generates an error upon reading * the token instead of keeping it as a lookahead. The reason * lies in the lack of a $default transition in the "expr : xpr . " - * state (currently state 25). It is probably ommitted because tNL + * state (currently state 25). It is probably omitted because tNL * is a non-terminal and the state contains 2 s/r conflicts. The * state enumerates all possible transitions instead of using a * $default transition.