summary refs log tree commit diff stats
path: root/doc/manual
Commit message (Collapse)AuthorAgeFilesLines
* fix #3418 add example on openArray to types.txtJamesP2015-10-051-0/+5
|
* document new bitsize pragmaAman Gupta2015-09-301-0/+18
|
* clarify the meaning of the 'auto' metatype; 'auto' is now bind-multiple; ↵Araq2015-09-142-10/+25
| | | | fixes #3224
* documented implicit compileTime procsAraq2015-09-141-1/+14
|
* fixes #1782Araq2015-09-131-0/+8
|
* documented void contextAraq2015-09-121-0/+18
|
* fixes #2559Araq2015-09-101-4/+4
|
* minor documentation cleanupsAraq2015-09-081-1/+3
|
* fixes #2590; methods now require a .base annotationAraq2015-09-061-2/+7
|
* Merge pull request #3286 from yglukhov/when-nimvmAndreas Rumpf2015-09-051-0/+29
|\ | | | | when nimvm stmt
| * Added documentation for when nimvm statement.Yuriy Glukhov2015-09-051-2/+31
| |
* | doc: Trim .txt files trailing whitespaceAdam Strzelecki2015-09-0415-163/+163
|/ | | | via OSX: find . -name '*.txt' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* refs #2973; manual contains almost all pragmas now, few are left in the ↵Araq2015-08-141-0/+464
| | | | compiler guide
* Improve discoverability of 'of' operatorMichał Zieliński2015-08-021-1/+2
|
* Merge branch 'more_concurrency' into develAraq2015-06-301-1/+1
|\ | | | | | | | | | | | | | | Conflicts: doc/tut1.txt lib/core/locks.nim lib/pure/collections/tables.nim lib/pure/selectors.nim
| * minor manual updateAraq2015-05-281-1/+1
| |
* | Added `$` documentation to the manualapense2015-06-251-0/+28
| | | | | | It's mentioned for enums, for exmplae, but it should probably be explicit in the string section
* | Merge pull request #2990 from apense/patch-3Andreas Rumpf2015-06-251-0/+2
|\ \ | | | | | | Minor object documentation additions
| * | Minor object documentation additionsapense2015-06-251-0/+2
| | |
* | | Merge pull request #2989 from apense/patch-11reactormonk2015-06-251-0/+15
|\ \ \ | | | | | | | | Added example for var overloading
| * | | Added example for var overloadingapense2015-06-241-0/+15
| |/ / | | | | | | Simple example to demonstrate overloading in case technical lingo is confusing
* / / Added example for associativityapense2015-06-241-5/+12
|/ / | | | | Hopefully this change makes this neat feature more apparent
* | fix grammarAraq2015-06-251-20/+20
| |
* | Merge pull request #2968 from def-/neutral-languagereactormonk2015-06-211-1/+1
|\ \ | | | | | | Neutral language
| * | Use gender neutral language in documentationdef2015-06-211-1/+1
| | |
* | | rename writeln to writeLine in docpatrick dw2015-06-194-18/+18
|/ /
* | Regarding num literals, mod paths, ident equality.Oscar Campbell2015-06-142-9/+26
| |
* | Note about deprecation in generics.txtapense2015-06-081-2/+4
| | | | | | I'm happy to change the wording or anything. It does seem like an important thing to mention, though. It might be better not to even mention typeless procs so as not to encourage bad behavior.
* | Fixed code indentation in procs.txtapense2015-06-041-1/+1
| | | | | | Now matches tut2.txt
* | Fix doc for #2523, regarding numeric literals.Oscar Campbell2015-05-311-9/+14
| |
* | Fix introduced erroneous use of "canonical" back to original wording. Fix ↵Oscar Campbell2015-05-262-4/+5
| | | | | | | | faulty description of proc params behavior. Remove 'null' return type in example.
* | Remove double punctuation. Change "contrained" wording to "constraint".Oscar Campbell2015-05-252-3/+4
| |
* | Merge remote-tracking branch 'upstream/devel' into develOscar Campbell2015-05-252-4/+4
|\ \
| * | Corrected various links within documentationapense2015-05-252-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | Corrected `noSideEffect pragma` links in lib/system (The newer documentation uses slightly different links) Corrected `noSideEffect pragma` in types links to match the updated link names Minor link adjustment in stmts to match the newer link names
| * | Revert "Fix typo in manual"reactormonk2015-05-241-4/+4
| | |
| * | Fix typo in manualFlaviu Tamas2015-05-241-4/+4
| | | | | | | | | | | | See IRC logs around Sun May 24 22:06:26 EDT 2015 for details
* | | Change to hard word wrap at 80.Oscar Campbell2015-05-254-17/+33
| | |
* | | Change wording in some parts. Fix some typos.Oscar Campbell2015-05-2511-60/+71
|/ /
* | RawFlowVar was renamed to FlowVarBaseMarkus Engelbrecht2015-05-161-1/+1
| |
* | fix typo for noSideEffect pragmaMarkus Engelbrecht2015-05-151-1/+1
|/
* cleanups for underscores in tuple unpackingAraq2015-04-241-30/+44
|
* Merge branch 'devel' of https://github.com/Araq/Nim into develAraq2015-04-202-9/+10
|\
| * Merge pull request #2503 from ReneSac/arrowLikeAndreas Rumpf2015-04-151-8/+9
| |\ | | | | | | Restrict arrow-like operators to those ending with `->`, `~>` or `=>`
| | * Minor fixes for arrow like change patchReneSac2015-04-111-3/+4
| | | | | | | | | | | | | | | | | | Don't use ^ operator yet for compatibility with older compilers. Moved arrow like explanation, and fix precedence description on the text in the manual. Fixed typo in news.
| | * Changing the rule for arrow like operators again.ReneSac2015-04-101-2/+2
| | |
| | * Updated arrow like and strongSpaces in the manualReneSac2015-04-091-7/+7
| | | | | | | | | | | | Also added `-` to the first character table and standartized spaces there.
| * | Fixed typo in lexing.txt: UINT8_LIT -> UINT_LITRuslan Mustakov2015-04-121-1/+1
| | |
* | | fixes #2476Araq2015-04-191-2/+2
|/ /
* / Doc: compileTime pragma can be used on variablenovist2015-04-111-4/+3
|/
* minor doc improvementsAraq2015-04-081-1/+3
|