about summary refs log tree commit diff
path: root/src/doc/guide-tasks.md
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-04-21 21:46:38 -0700
committerbors <bors@rust-lang.org>2014-04-21 21:46:38 -0700
commite6c8c7c9c65a3623e98a62d98a8e71e483d5b7c7 (patch)
tree0edcc9806e1a4634d8e4e8af5442c3fb3d6c2652 /src/doc/guide-tasks.md
parent960bf8ce66d4d3563e1a03f2dbd161857ac0f398 (diff)
parentc494a06064017f307a8d9dc4797e614d2ed99143 (diff)
downloadrust-e6c8c7c9c65a3623e98a62d98a8e71e483d5b7c7.tar.gz
rust-e6c8c7c9c65a3623e98a62d98a8e71e483d5b7c7.zip
auto merge of #13587 : adrientetar/rust/more-docs, r=brson
- Use Fira Sans for headlines, Heuristica for the body (Adobe Utopia derivative). Both are licensed under the SIL OFL license. (I didn't include BoldItalic because it is sparingly used.)
- Split TOC into 2 columns for the docs except manual (too tall, too wide to be readable).
- Some fixes to rustdoc, bring styles in coherency with eachother
- A few tweaks

Two examples: [modified tutorial](http://adrientetar.legtux.org/cached/rust-docs/tutorial.htm) and [modified manual](http://adrientetar.legtux.org/cached/rust-docs/manual.htm).

Rustdoc got some fixes, here is [modified `enum.FileType`](http://adrientetar.legtux.org/cached/rust-docs/enum.FileType.htm), [modified `std`](http://adrientetar.legtux.org/cached/rust-docs/std.htm) and [modified `std::io`](http://adrientetar.legtux.org/cached/rust-docs/io.htm).

#13484, #13485 follow-up.

cc @brson
Diffstat (limited to 'src/doc/guide-tasks.md')
-rw-r--r--src/doc/guide-tasks.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide-tasks.md b/src/doc/guide-tasks.md
index ed5384830d9..26e5c053372 100644
--- a/src/doc/guide-tasks.md
+++ b/src/doc/guide-tasks.md
@@ -456,7 +456,7 @@ an `Error` result.
 
 [`Result`]: std/result/index.html
 
-> ***Note:*** A failed task does not currently produce a useful error
+> *Note:* A failed task does not currently produce a useful error
 > value (`try` always returns `Err(())`). In the
 > future, it may be possible for tasks to intercept the value passed to
 > `fail!()`.