mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 19:52:36 +00:00
Fix few typos
This commit is contained in:
@@ -215,7 +215,7 @@ const
|
||||
errOrdinalTypeExpected: "ordinal type expected",
|
||||
errOrdinalOrFloatTypeExpected: "ordinal or float type expected",
|
||||
errOverOrUnderflow: "over- or underflow",
|
||||
errCannotEvalXBecauseIncompletelyDefined: "cannot evalutate '$1' because type is not defined completely",
|
||||
errCannotEvalXBecauseIncompletelyDefined: "cannot evaluate '$1' because type is not defined completely",
|
||||
errChrExpectsRange0_255: "\'chr\' expects an int in the range 0..255",
|
||||
errDynlibRequiresExportc: "\'dynlib\' requires \'exportc\'",
|
||||
errUndeclaredFieldX: "undeclared field: \'$1\'",
|
||||
|
||||
@@ -73,7 +73,7 @@ proc processCmdLine*(pass: TCmdLinePass, cmd: string) =
|
||||
of "auto": gStyleCheck = StyleCheck.Auto
|
||||
else: localError(gCmdLineInfo, errOnOrOffExpected)
|
||||
of "wholeproject": gOnlyMainfile = false
|
||||
of "besteffort": msgs.gErrorMax = high(int) # dont stop after first error
|
||||
of "besteffort": msgs.gErrorMax = high(int) # don't stop after first error
|
||||
else:
|
||||
processSwitch(pass, p)
|
||||
of cmdArgument:
|
||||
|
||||
@@ -123,7 +123,7 @@ when defined(macosx) or defined(freebsd):
|
||||
NOTE_USECONDS* = 0x00000004'u32 ## data is microseconds
|
||||
NOTE_NSECONDS* = 0x00000008'u32 ## data is nanoseconds
|
||||
else:
|
||||
# NetBSD and OpenBSD doesnt support NOTE_{TIME} constants, but
|
||||
# NetBSD and OpenBSD doesn't support NOTE_{TIME} constants, but
|
||||
# support EVFILT_TIMER with granularity of milliseconds.
|
||||
const
|
||||
NOTE_MSECONDS* = 0x00000000'u32
|
||||
|
||||
@@ -132,7 +132,7 @@ export Port, SocketFlag
|
||||
## # Handle exception
|
||||
##
|
||||
## Unfortunately the semantics of the try statement may not always be correct,
|
||||
## and occassionally the compilation may fail altogether.
|
||||
## and occasionally the compilation may fail altogether.
|
||||
## As such it is better to use the former style when possible.
|
||||
##
|
||||
## Discarding futures
|
||||
|
||||
@@ -446,7 +446,7 @@ proc request*(url: string, httpMethod: string, extraHeaders = "",
|
||||
|
||||
|
||||
# get the socket ready. If we are connecting through a proxy to SSL,
|
||||
# send the appropiate CONNECT header. If not, simply connect to the proper
|
||||
# send the appropriate CONNECT header. If not, simply connect to the proper
|
||||
# host (which may still be the proxy, for normal HTTP)
|
||||
if proxy != nil and hostUrl.scheme == "https":
|
||||
when defined(ssl):
|
||||
@@ -750,7 +750,7 @@ proc newHttpClient*(userAgent = defUserAgent,
|
||||
## ``proxy`` specifies an HTTP proxy to use for this HTTP client's
|
||||
## connections.
|
||||
##
|
||||
## ``timeout`` specifies the number of miliseconds to allow before a
|
||||
## ``timeout`` specifies the number of milliseconds to allow before a
|
||||
## ``TimeoutError`` is raised.
|
||||
new result
|
||||
result.headers = newHttpHeaders()
|
||||
|
||||
@@ -52,13 +52,13 @@ when defined(nimdoc):
|
||||
Vnode, ## BSD specific file change happens
|
||||
User, ## User event is raised
|
||||
Error, ## Error happens while waiting, for descriptor
|
||||
VnodeWrite, ## NOTE_WRITE (BSD specific, write to file occured)
|
||||
VnodeDelete, ## NOTE_DELETE (BSD specific, unlink of file occured)
|
||||
VnodeWrite, ## NOTE_WRITE (BSD specific, write to file occurred)
|
||||
VnodeDelete, ## NOTE_DELETE (BSD specific, unlink of file occurred)
|
||||
VnodeExtend, ## NOTE_EXTEND (BSD specific, file extended)
|
||||
VnodeAttrib, ## NOTE_ATTRIB (BSD specific, file attributes changed)
|
||||
VnodeLink, ## NOTE_LINK (BSD specific, file link count changed)
|
||||
VnodeRename, ## NOTE_RENAME (BSD specific, file renamed)
|
||||
VnodeRevoke ## NOTE_REVOKE (BSD specific, file revoke occured)
|
||||
VnodeRevoke ## NOTE_REVOKE (BSD specific, file revoke occurred)
|
||||
|
||||
ReadyKey*[T] = object
|
||||
## An object which holds result for descriptor
|
||||
@@ -140,7 +140,7 @@ when defined(nimdoc):
|
||||
|
||||
proc flush*[T](s: Selector[T]) =
|
||||
## Flushes all changes was made to kernel pool/queue.
|
||||
## This function is usefull only for BSD and MacOS, because
|
||||
## This function is useful only for BSD and MacOS, because
|
||||
## kqueue supports bulk changes to be made.
|
||||
## On Linux/Windows and other Posix compatible operation systems,
|
||||
## ``flush`` is alias for `discard`.
|
||||
|
||||
@@ -122,7 +122,7 @@ when isMainModule:
|
||||
inc occur[x]
|
||||
for i, oc in occur:
|
||||
if oc < 69:
|
||||
doAssert false, "too few occurances of " & $i
|
||||
doAssert false, "too few occurrences of " & $i
|
||||
elif oc > 130:
|
||||
doAssert false, "too many occurances of " & $i
|
||||
doAssert false, "too many occurrences of " & $i
|
||||
main()
|
||||
|
||||
Reference in New Issue
Block a user