Skip to content

Commit 1577b88

Browse files
committed
Remove double linebreaks from conditional-compilation.md
1 parent bedb6dd commit 1577b88

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

src/conditional-compilation.md

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

33
r[cfg]
44

5-
65
r[cfg.syntax]
76
> **<sup>Syntax</sup>**\
87
> _ConfigurationPredicate_ :\
@@ -69,7 +68,6 @@ Keys do not need to be unique. For example, both `feature = "std"` and `feature
6968

7069
r[cfg.options.set]
7170

72-
7371
r[cfg.options.general]
7472
Which configuration options are set is determined statically during the
7573
compilation of the crate.
@@ -101,7 +99,6 @@ Warning: Arbitrarily-set configuration options can clash with compiler-set confi
10199

102100
r[cfg.target_arch]
103101

104-
105102
r[cfg.target_arch.gen]
106103
Key-value option set once with the target's CPU architecture. The value is
107104
similar to the first element of the platform's target triple, but not
@@ -122,7 +119,6 @@ Example values:
122119

123120
r[cfg.target_feature]
124121

125-
126122
r[cfg.target_feature.general]
127123
Key-value option set for each platform feature available for the current
128124
compilation target.
@@ -149,7 +145,6 @@ An additional feature of `crt-static` is available to the
149145

150146
r[cfg.target_os]
151147

152-
153148
r[cfg.target_os.general]
154149
Key-value option set once with the target's operating system. This value is
155150
similar to the second and third element of the platform's target triple.
@@ -172,7 +167,6 @@ Example values:
172167

173168
r[cfg.target_family]
174169

175-
176170
r[cfg.target_family.general]
177171
Key-value option providing a more generic description of a target, such as the family of the
178172
operating systems or architectures that the target generally falls into. Any number of
@@ -220,7 +214,6 @@ Example values:
220214

221215
r[cfg.target_abi]
222216

223-
224217
r[cfg.target_abi.general]
225218
Key-value option set to further disambiguate the `target_env` with information
226219
about the target ABI.
@@ -250,7 +243,6 @@ on the endianness of the target's CPU.
250243

251244
r[cfg.target_poitner_width]
252245

253-
254246
r[cfg.target_pointer_width.general]
255247
Key-value option set once with the target's pointer width in bits.
256248

@@ -265,7 +257,6 @@ Example values:
265257

266258
r[cfg.target_vendor]
267259

268-
269260
r[cfg.target_vendor.general]
270261
Key-value option set once with the vendor of the target.
271262

@@ -281,7 +272,6 @@ Example values:
281272

282273
r[cfg.target_has_atomic]
283274

284-
285275
r[cfg.target_has_atomic.general]
286276
Key-value option set for each bit width that the target supports
287277
atomic loads, stores, and compare-and-swap operations.
@@ -329,7 +319,6 @@ Set when the crate being compiled is being compiled with the `proc_macro`
329319

330320
r[cfg.panic]
331321

332-
333322
r[cfg.panic.general]
334323
Key-value option set depending on the panic strategy. Note that more values may be added in the future.
335324

@@ -345,7 +334,6 @@ Example values:
345334

346335
r[cfg.attr]
347336

348-
349337
r[cfg.attr.syntax]
350338
> **<sup>Syntax</sup>**\
351339
> _CfgAttrAttribute_ :\
@@ -414,7 +402,6 @@ The `cfg` attribute is allowed anywhere attributes are allowed.
414402

415403
r[cfg.cfg_attr]
416404

417-
418405
r[cfg.cfg_attr.syntax]
419406
> **<sup>Syntax</sup>**\
420407
> _CfgAttrAttribute_ :\
@@ -423,7 +410,6 @@ r[cfg.cfg_attr.syntax]
423410
> _CfgAttrs_ :\
424411
> &nbsp;&nbsp; [_Attr_]&nbsp;(`,` [_Attr_])<sup>\*</sup> `,`<sup>?</sup>
425412
426-
427413
r[cfg.cfg_attr.general]
428414
The `cfg_attr` [attribute] conditionally includes [attributes] based on a
429415
configuration predicate.

0 commit comments

Comments
 (0)