@@ -388,25 +388,25 @@ impl Context {
388
388
. unwrap ( ) // will only fail if called from Drop after .take()
389
389
}
390
390
391
- /// Internal function for retrieving the ESYS session handle for
391
+ /// Private method for retrieving the ESYS session handle for
392
392
/// the optional session 1.
393
393
fn optional_session_1 ( & self ) -> ESYS_TR {
394
394
SessionHandle :: from ( self . sessions . 0 ) . into ( )
395
395
}
396
396
397
- /// Internal function for retrieving the ESYS session handle for
397
+ /// Private method for retrieving the ESYS session handle for
398
398
/// the optional session 2.
399
399
fn optional_session_2 ( & self ) -> ESYS_TR {
400
400
SessionHandle :: from ( self . sessions . 1 ) . into ( )
401
401
}
402
402
403
- /// Internal function for retrieving the ESYS session handle for
403
+ /// Private method for retrieving the ESYS session handle for
404
404
/// the optional session 3.
405
405
fn optional_session_3 ( & self ) -> ESYS_TR {
406
406
SessionHandle :: from ( self . sessions . 2 ) . into ( )
407
407
}
408
408
409
- /// Function that returns the required
409
+ /// Private method that returns the required
410
410
/// session handle 1 if it is available else
411
411
/// returns an error.
412
412
fn required_session_1 ( & self ) -> Result < ESYS_TR > {
@@ -419,7 +419,7 @@ impl Context {
419
419
} )
420
420
}
421
421
422
- /// Function that returns the required
422
+ /// Private method that returns the required
423
423
/// session handle 2 if it is available else
424
424
/// returns an error.
425
425
fn required_session_2 ( & self ) -> Result < ESYS_TR > {
0 commit comments