Skip to content

Commit 6be0f0a

Browse files
committedSep 2, 2024
Fix indentation
Signed-off-by: Gowtham Suresh Kumar <gowtham.sureshkumar@arm.com>
1 parent 86d4d2c commit 6be0f0a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/back/backend_handler.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ impl BackEndHandler {
5454
///
5555
/// # Errors
5656
/// - if the provider ID can not perform the type of operation, returns
57-
/// `ResponseStatus::PsaErrorNotSupported`
57+
/// `ResponseStatus::PsaErrorNotSupported`
5858
/// - if the provider ID does not match, returns `ResponseStatus::WrongProviderId`
5959
/// - if the content type does not match, returns `ResponseStatus::ContentTypeNotSupported`
6060
/// - if the accept type does not match, returns `ResponseStatus::AcceptTypeNotSupported`

‎src/utils/service_builder.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ impl ServiceBuilder {
106106
///
107107
/// # Errors
108108
/// * if any of the fields specified in the configuration are inconsistent (e.g. key info manager with name 'X'
109-
/// requested for a certain provider does not exist) or if required fields are missing, an error of kind
110-
/// `InvalidData` is returned with a string describing the cause more accurately.
109+
/// requested for a certain provider does not exist) or if required fields are missing, an error of kind
110+
/// `InvalidData` is returned with a string describing the cause more accurately.
111111
pub fn build_service(config: &ServiceConfig) -> Result<FrontEndHandler> {
112112
GlobalConfigBuilder::new()
113113
.with_log_error_details(config.core_settings.log_error_details.unwrap_or(false))

0 commit comments

Comments
 (0)
Please sign in to comment.