summary refs log tree commit diff
path: root/src/doc/reference.md
AgeCommit message (Collapse)AuthorLines
2015-09-11Auto merge of #28348 - petrochenkov:novirt, r=alexcrichtonbors-3/+0
Noticed these yesterday while reading libsyntax
2015-09-11Remove some remains of virtual structs from the parserVadim Petrochenkov-3/+0
2015-09-11Auto merge of #28328 - tshepang:unusual, r=brsonbors-10/+10
2015-09-10Auto merge of #28329 - tshepang:comfort, r=steveklabnikbors-2/+2
2015-09-10reference: not comfortable seeing a paragraph starting with a lowercase letterTshepang Lekhonkhobe-2/+2
2015-09-10reference: using periods here is unusualTshepang Lekhonkhobe-10/+10
2015-09-09reference: format code snippets in an idiomatic mannerTshepang Lekhonkhobe-36/+40
2015-09-03Removed incorrect reference from #28196christopherdumas-10/+0
2015-08-25Document the recursion_limit crate attributeMatt Brubeck-1/+5
2015-08-24Use correct indefinite article in reference.mdCorey Farwell-1/+1
2015-08-21Include cfg(test) in the referenceMatt Brubeck-0/+1
2015-08-18add cfg(target_env) to the referenceSteve Klabnik-0/+5
Fixes #27587
2015-08-10syntax: Add a new unstable #[linked_from] attributeAlex Crichton-2/+8
To correctly reexport statically included libraries from a DLL on Windows, the compiler will soon need to have knowledge about what symbols are statically included and which are not. To solve this problem a new unstable `#[linked_from]` attribute is being added and recognized on `extern` blocks to indicate which native library the symbols are coming from. The compiler then keeps track of what the set of FFI symbols are that are included statically. This information will be used in a future commit to configure how we invoke the linker on Windows.
2015-08-05Add an example to Trait section of referenceSteve Klabnik-1/+23
Fixes #26115
2015-08-04add `meta` designator to macro referenceMatt Friedman-2/+3
2015-08-03reference: follow idiom in this tiny snippetTshepang Lekhonkhobe-2/+2
2015-07-27Auto merge of #27274 - tshepang:not-needed-word, r=steveklabnikbors-2/+3
Also, join the 2 sentences to improve flow
2015-07-25Add feature gateJared Roesch-0/+2
2015-07-25reference: "those" feels misplaced thereTshepang Lekhonkhobe-2/+3
Also, join the 2 sentences to improve flow
2015-07-21Note possiblities of empty extern blocks (based on #12575)Aidan Hobson Sayers-0/+4
2015-07-16Merge branch 'more-ref-fixes' of https://github.com/tshepang/rust into ↵Steve Klabnik-8/+8
rollup_central
2015-07-16Merge branch 'coercions' of https://github.com/tshepang/rust into rollup_centralSteve Klabnik-41/+66
2015-07-14Don't mention packed attribute in reference.mdSteven Allen-2/+0
2015-07-08reference: miscellaneous fixesTshepang Lekhonkhobe-8/+8
2015-07-06Rollup merge of #26835 - tshepang:copy-or-not, r=steveklabnikSteve Klabnik-3/+2
2015-07-06Rollup merge of #26834 - tshepang:space, r=brsonSteve Klabnik-1/+0
2015-07-06reference: make 'Move and copied types' section more simpleTshepang Lekhonkhobe-3/+2
2015-07-06reference: do not display the extra spaceTshepang Lekhonkhobe-1/+0
2015-07-05Rollup merge of #26808 - tshepang:closures, r=steveklabnikSteve Klabnik-3/+4
2015-07-06reference: 'inherits' is more clear than 'implies'Tshepang Lekhonkhobe-3/+4
2015-07-05Rollup merge of #26800 - tshepang:comma, r=GankroSteve Klabnik-1/+1
2015-07-05Rollup merge of #26789 - tshepang:improve-array-examples, r=alexcrichtonSteve Klabnik-4/+9
2015-07-05reference: remove stray commaTshepang Lekhonkhobe-1/+1
2015-07-05reference: improve coercions sectionTshepang Lekhonkhobe-41/+66
2015-07-05Rollup merge of #26795 - tshepang:typo, r=steveklabnikSteve Klabnik-1/+1
2015-07-05reference: fix typoTshepang Lekhonkhobe-1/+1
2015-07-05Rollup merge of #26792 - tshepang:follow-idiom, r=steveklabnikSteve Klabnik-4/+2
2015-07-05reference: improve lambda exampleTshepang Lekhonkhobe-4/+2
2015-07-05Rollup merge of #26791 - tshepang:misc-ref-fixes, r=steveklabnikSteve Klabnik-2/+2
One is for grammar, and the other is for clarity
2015-07-05reference: tiny fixesTshepang Lekhonkhobe-2/+2
One is for grammar, and the other is for clarity
2015-07-05Rollup merge of #26788 - tshepang:not-exclamation-marks, r=steveklabnikSteve Klabnik-2/+2
The sentences are also so short that they don't need periods at the end
2015-07-05Rollup merge of #26787 - tshepang:tuple-usage, r=steveklabnikSteve Klabnik-3/+6
2015-07-05Rollup merge of #26785 - tshepang:inference, r=steveklabnikSteve Klabnik-12/+21
…at and integer types
2015-07-05reference: improve examples of the different array typesTshepang Lekhonkhobe-4/+9
2015-07-05reference: that looks like exclamations marks for some fontsTshepang Lekhonkhobe-2/+2
The sentences are also so short that they don't need periods at the end
2015-07-05reference: make tuple usage examples more meaningfulTshepang Lekhonkhobe-3/+6
2015-07-05reference: improve readability of type inference explanations for float and ↵Tshepang Lekhonkhobe-12/+21
integer types
2015-07-01Add netbsd amd64 supportAlex Newman-1/+1
2015-06-26accessing private fields is not safe, and io isn't scaryAlexis Beingessner-3/+0
2015-06-18Rollup merge of #26349 - petrochenkov:bitwise, r=steveklabnikManish Goregaokar-5/+7
I'm surprised that bitwise operators `&`, `|` and `^` are implemented for `bool` arguments, because inspection of boolean's bits is not something that should be encouraged and because `&&` -> `&` is a common typo, but if they are implemented, then their behavior should be documented.