fixed typos so docgen works again

This commit is contained in:
Araq
2014-12-20 22:39:05 +01:00
parent 00a702baeb
commit 7deb8b2e7b
4 changed files with 4 additions and 3 deletions

View File

@@ -729,7 +729,7 @@ proc semOverloadedCallAnalyseEffects(c: PContext, n: PNode, nOrig: PNode,
case callee.kind
of skMacro, skTemplate: discard
else:
if (callee.kind in skIterators) and (callee.id == c.p.owner.id):
if callee.kind in skIterators and callee.id == c.p.owner.id:
localError(n.info, errRecursiveDependencyX, callee.name.s)
if sfNoSideEffect notin callee.flags:
if {sfImportc, sfSideEffect} * callee.flags != {}:

View File

@@ -364,6 +364,7 @@ proc semVarOrLet(c: PContext, n: PNode, symkind: TSymKind): PNode =
# BUGFIX: ``fitNode`` is needed here!
# check type compability between def.typ and typ
def = fitNode(c, typ, def)
#changeType(def.skipConv, typ, check=true)
else:
typ = skipIntLit(def.typ)
if typ.kind in {tySequence, tyArray, tySet} and

View File

@@ -9,7 +9,7 @@
## Implementation of a queue. The underlying implementation uses a ``seq``.
## Note: For inter thread communication use
## a `TChannel <channels.html>``_ instead.
## a `TChannel <channels.html>`_ instead.
import math

View File

@@ -25,7 +25,7 @@
## the `asyncio <asyncio.html>`_ module.
##
## Since version 0.10.2 this module is deprecated. Use the `net <net.html>`_
## or the ``rawsockets <rawsockets.html>`_ module instead.
## or the `rawsockets <rawsockets.html>`_ module instead.
{.deprecated.}