summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/itemized-blocks/wrap.rs
blob: a4907303c9e1bf159e507ff6c80af3bacd51877a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// rustfmt-wrap_comments: true
// rustfmt-format_code_in_doc_comments: true
// rustfmt-max_width: 50

//! This is a list:
//!  * Outer
//!  * Outer
//!   * Inner
//!   * Inner with lots of text so that it could
//!     be reformatted something something
//!     something lots of text so that it could be
//!     reformatted something something something
//!
//! This example shows how to configure fern to
//! output really nicely colored logs
//! - when the log level is error, the whole line
//!   is red
//! - when the log level is warn, the whole line
//!   is yellow
//! - when the log level is info, the level name
//!   is green and the rest of the line is white
//! - when the log level is debug, the whole line
//!   is white
//! - when the log level is trace, the whole line
//!   is gray ("bright black")

// This example shows how to configure fern to
// output really nicely colored logs
// - when the log level is error, the whole line
//   is red
//   - when the log level is warn, the whole line
//     is yellow
//     - when the log level is info, the level
//       name is green and the rest of the line is
//       white
//   - when the log level is debug, the whole line
//     is white
//   - when the log level is trace, the whole line
//     is gray ("bright black")

/// All the parameters ***except for
/// `from_theater`*** should be inserted as sent
/// by the remote theater, i.e., as passed to
/// [`Theater::send`] on the remote actor:
///  * `from` is the sending (remote) [`ActorId`],
///    as reported by the remote theater by
///    theater-specific means
///  * `to` is the receiving (local) [`ActorId`],
///    as requested by the remote theater
///  * `tag` is a tag that identifies the message
///    type
///  * `msg` is the (serialized) message
/// All the parameters ***except for
/// `from_theater`*** should be inserted as sent
/// by the remote theater, i.e., as passed to
/// [`Theater::send`] on the remote actor
fn func1() {}

/// All the parameters ***except for
/// `from_theater`*** should be inserted as sent
/// by the remote theater, i.e., as passed to
/// [`Theater::send`] on the remote actor:
///  * `from` is the sending (remote) [`ActorId`],
///    as reported by the remote theater by
///    theater-specific means
///  * `to` is the receiving (local) [`ActorId`],
///    as requested by the remote theater
///  * `tag` is a tag that identifies the message
///    type
///  * `msg` is the (serialized) message
/// ```
/// let x = 42;
/// ```
fn func2() {}

/// Look:
///
/// ```
/// let x = 42;
/// ```
///  * `from` is the sending (remote) [`ActorId`],
///    as reported by the remote theater by
///    theater-specific means
///  * `to` is the receiving (local) [`ActorId`],
///    as requested by the remote theater
///  * `tag` is a tag that identifies the message
///    type
///  * `msg` is the (serialized) message
fn func3() {}