Skip to content

Commit da65af0

Browse files
committed
Remove some double blank lines
1 parent e0f31a0 commit da65af0

File tree

7 files changed

+0
-9
lines changed

7 files changed

+0
-9
lines changed

src/attributes.md

-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ fn some_unused_variables() {
109109

110110
r[attributes.meta]
111111

112-
113112
r[attributes.meta.intro]
114113
A "meta item" is the syntax used for the _Attr_ rule by most [built-in
115114
attributes]. It has the following grammar:

src/attributes/codegen.md

-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ assumed to exist.
6363

6464
r[attributes.codegen.target_feature]
6565

66-
6766
r[attributes.codegen.target_feature.intro]
6867
The *`target_feature` [attribute]* may be applied to a function to
6968
enable code generation of that function for specific platform architecture

src/attributes/debugger.md

-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ When viewed under WinDbg, the `fancy_rect` variable would be shown as follows:
8686

8787
r[attributes.debugger.debugger_visualizer.gdb]
8888

89-
9089
r[attributes.debugger.debugger_visualizer.gdb.pretty]
9190
GDB supports the use of a structured Python script, called a *pretty printer*, that describes how a type should be visualized in the debugger view.
9291
For detailed information on pretty printers, refer to GDB's [pretty printing documentation].
@@ -161,7 +160,6 @@ When the crate's debug executable is passed into GDB[^rust-gdb], `print bob` wil
161160

162161
r[attributes.debugger.collapse_debuginfo]
163162

164-
165163
r[attributes.debugger.collapse_debuginfo.intro]
166164
The *`collapse_debuginfo` [attribute]* controls whether code locations from a macro definition are collapsed into a single location associated with the macro's call site,
167165
when generating debuginfo for code calling this macro.

src/attributes/derive.md

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
r[attributes.derive]
44

5-
65
r[attributes.derive.intro]
76
The *`derive` attribute* allows new [items] to be automatically generated for
87
data structures.

src/attributes/diagnostics.md

-1
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,6 @@ The attribute should be placed on a [trait declaration], though it is not an err
492492
r[attributes.diagnostic.on_unimplemented.syntax]
493493
The attribute uses the [_MetaListNameValueStr_] syntax to specify its inputs, though any malformed input to the attribute is not considered as an error to provide both forwards and backwards compatibility.
494494
495-
496495
r[attributes.diagnostic.on_unimplemented.keys]
497496
The following keys have the given meaning:
498497
* `message` --- The text for the top level error message.

src/attributes/testing.md

-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ enables the [`test` conditional compilation option].
1111

1212
r[attributes.testing.test]
1313

14-
1514
r[attributes.testing.test.intro]
1615
The *`test` attribute* marks a function to be executed as a test.
1716

@@ -55,7 +54,6 @@ fn test_the_thing() -> io::Result<()> {
5554

5655
r[attributes.testing.ignore]
5756

58-
5957
r[attributes.testing.ignore.intro]
6058
A function annotated with the `test` attribute can also be annotated with the
6159
`ignore` attribute. The *`ignore` attribute* tells the test harness to not

src/attributes/type_system.md

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ The following [attributes] are used for changing how a type can be used.
88

99
r[attributes.type-system.non_exhaustive]
1010

11-
1211
r[attributes.type-system.non_exhaustive.intro]
1312
The *`non_exhaustive` attribute* indicates that a type or variant may have
1413
more fields or variants added in the future.

0 commit comments

Comments
 (0)