Skip to content

Commit 29aecbf

Browse files
committed
Address review comments
Signed-off-by: Hugues de Valon <hugues.devalon@arm.com>
1 parent 6c0f5e6 commit 29aecbf

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/bin/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
//! Parsec is the Platform AbstRaction for SECurity, a new open-source initiative to provide a
44
//! common API to secure services in a platform-agnostic way.
55
//!
6-
//! Parsec documentation is available at:
7-
//! https://parallaxsecond.github.io/parsec-book/index.html
6+
//! Parsec documentation is available
7+
//! [here](https://parallaxsecond.github.io/parsec-book/index.html)
88
//!
99
//! Most of Parsec configuration comes from its configuration file.
10-
//! Please check the documentation to find more about configuration:
11-
//! https://parallaxsecond.github.io/parsec-book/user_guides/configuration.html
10+
//! Please check the documentation to find more about configuration
11+
//! [here](https://parallaxsecond.github.io/parsec-book/user_guides/configuration.html)
1212
#![deny(
1313
nonstandard_style,
1414
const_err,

src/front/listener.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pub enum ListenerType {
2727
pub struct ListenerConfig {
2828
/// Type of the Listener
2929
pub listener_type: ListenerType,
30-
/// Timeout of the Listener before the connection errors out
30+
/// Timeout of the Listener before the connection errors out (in milliseconds)
3131
pub timeout: u64,
3232
}
3333

src/providers/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub mod mbed_crypto_provider;
2323
pub mod tpm_provider;
2424

2525
/// Provider configuration structure
26-
/// For providers configs in parsec config.toml we use a format similar
26+
/// For providers configs in Parsec config.toml we use a format similar
2727
/// to the one described in the Internally Tagged Enum representation
2828
/// where "provider_type" is the tag field. For details see:
2929
/// https://serde.rs/enum-representations.html

0 commit comments

Comments
 (0)