File tree 1 file changed +9
-5
lines changed
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -381,9 +381,11 @@ pub mod builtin {
381
381
382
382
/// Includes a utf8-encoded file as a string.
383
383
///
384
+ /// The file is located relative to the current file. (similarly to how
385
+ /// modules are found)
386
+ ///
384
387
/// This macro will yield an expression of type `&'static str` which is the
385
- /// contents of the filename specified. The file is located relative to the
386
- /// current file (similarly to how modules are found),
388
+ /// contents of the file.
387
389
///
388
390
/// # Examples
389
391
///
@@ -396,9 +398,11 @@ pub mod builtin {
396
398
397
399
/// Includes a file as a reference to a byte array.
398
400
///
401
+ /// The file is located relative to the current file. (similarly to how
402
+ /// modules are found)
403
+ ///
399
404
/// This macro will yield an expression of type `&'static [u8; N]` which is
400
- /// the contents of the filename specified. The file is located relative to
401
- /// the current file (similarly to how modules are found),
405
+ /// the contents of the file.
402
406
///
403
407
/// # Examples
404
408
///
@@ -454,7 +458,7 @@ pub mod builtin {
454
458
455
459
/// Parse a file as an expression or an item according to the context.
456
460
///
457
- /// The file is located relative to the current file (similarly to how
461
+ /// The file is located relative to the current file. (similarly to how
458
462
/// modules are found)
459
463
///
460
464
/// Using this macro is often a bad idea, because if the file is
You can’t perform that action at this time.
0 commit comments