@@ -372,7 +372,7 @@ pub trait PushOne<L>: Push<L> {}
372
372
373
373
/// Type that cannot be instantiated.
374
374
///
375
- /// Will be replaced with `!` eventually (https://github.com/rust-lang/rust/issues/35121).
375
+ /// Will be replaced with `!` eventually (< https://github.com/rust-lang/rust/issues/35121> ).
376
376
#[ derive( Debug , Copy , Clone ) ]
377
377
pub enum Void { }
378
378
@@ -523,7 +523,7 @@ impl<'lua> Lua<'lua> {
523
523
/// Opens all standard Lua libraries.
524
524
///
525
525
/// See the reference for the standard library here:
526
- /// https://www.lua.org/manual/5.2/manual.html#6
526
+ /// < https://www.lua.org/manual/5.2/manual.html#6>
527
527
///
528
528
/// This is done by calling `luaL_openlibs`.
529
529
///
@@ -541,71 +541,71 @@ impl<'lua> Lua<'lua> {
541
541
542
542
/// Opens base library.
543
543
///
544
- /// https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_base
544
+ /// < https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_base>
545
545
#[ inline]
546
546
pub fn open_base ( & mut self ) {
547
547
unsafe { ffi:: luaopen_base ( self . lua . 0 ) }
548
548
}
549
549
550
550
/// Opens bit32 library.
551
551
///
552
- /// https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_bit32
552
+ /// < https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_bit32>
553
553
#[ inline]
554
554
pub fn open_bit ( & mut self ) {
555
555
unsafe { ffi:: luaopen_bit ( self . lua . 0 ) }
556
556
}
557
557
558
558
/// Opens debug library.
559
559
///
560
- /// https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_debug
560
+ /// < https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_debug>
561
561
#[ inline]
562
562
pub fn open_debug ( & mut self ) {
563
563
unsafe { ffi:: luaopen_debug ( self . lua . 0 ) }
564
564
}
565
565
566
566
/// Opens io library.
567
567
///
568
- /// https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_io
568
+ /// < https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_io>
569
569
#[ inline]
570
570
pub fn open_io ( & mut self ) {
571
571
unsafe { ffi:: luaopen_io ( self . lua . 0 ) }
572
572
}
573
573
574
574
/// Opens math library.
575
575
///
576
- /// https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_math
576
+ /// < https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_math>
577
577
#[ inline]
578
578
pub fn open_math ( & mut self ) {
579
579
unsafe { ffi:: luaopen_math ( self . lua . 0 ) }
580
580
}
581
581
582
582
/// Opens os library.
583
583
///
584
- /// https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_os
584
+ /// < https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_os>
585
585
#[ inline]
586
586
pub fn open_os ( & mut self ) {
587
587
unsafe { ffi:: luaopen_os ( self . lua . 0 ) }
588
588
}
589
589
590
590
/// Opens package library.
591
591
///
592
- /// https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_package
592
+ /// < https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_package>
593
593
#[ inline]
594
594
pub fn open_package ( & mut self ) {
595
595
unsafe { ffi:: luaopen_package ( self . lua . 0 ) }
596
596
}
597
597
598
598
/// Opens string library.
599
599
///
600
- /// https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_string
600
+ /// < https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_string>
601
601
#[ inline]
602
602
pub fn open_string ( & mut self ) {
603
603
unsafe { ffi:: luaopen_string ( self . lua . 0 ) }
604
604
}
605
605
606
606
/// Opens table library.
607
607
///
608
- /// https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_table
608
+ /// < https://www.lua.org/manual/5.2/manual.html#pdf-luaopen_table>
609
609
#[ inline]
610
610
pub fn open_table ( & mut self ) {
611
611
unsafe { ffi:: luaopen_table ( self . lua . 0 ) }
0 commit comments