about summary refs log tree commit diff
path: root/src/libstd/num/usize.rs
AgeCommit message (Collapse)AuthorLines
2015-07-20Address feedbackBrian Anderson-1/+1
2015-07-20std: Create separate docs for the primitivesBrian Anderson-1/+2
Having the primitive and module docs derived from the same source causes problems, primarily that they can't contain hyperlinks cross-referencing each other. This crates dedicated private modules in `std` to document the primitive types, then for all primitives that have a corresponding module, puts hyperlinks in moth the primitive docs and the module docs cross-linking each other. This should help clear up confusion when readers find themselves on the wrong page.
2015-07-20doc: Clean up primitive short descriptionsBrian Anderson-1/+1
This makes the primitive descriptions on the front page read properly as descriptions of types and not of the associated modules.
2015-05-27Remove mentions of int / uint from the isize / usize docsJake Goulding-4/+0
2015-01-23grandfathered -> rust1Brian Anderson-1/+1
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-1/+1
2015-01-07Add isize, usize modules, deprecate int, uint modulesAaron Turon-0/+22
This PR introduces `isize` and `usize` modules to `core` and `std`, and deprecates the existing `int` and `uint` modules. The rustdoc primitive type links now point to these new modules. Due to deprecation this is a: [breaking-change]