Skip to content

Commit 2bfb7dc

Browse files
committed
simln-lib/fix: correct minor typos in CLN code
1 parent 7d952dd commit 2bfb7dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

simln-lib/src/cln.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,17 @@ impl ClnNode {
4949
.identity(Identity::from_pem(
5050
reader(&connection.client_cert).await.map_err(|err| {
5151
LightningError::ConnectionError(format!(
52-
"Cannot loads client certificate: {}",
52+
"Cannot load client certificate: {}",
5353
err
5454
))
5555
})?,
5656
reader(&connection.client_key).await.map_err(|err| {
57-
LightningError::ConnectionError(format!("Cannot loads client key: {}", err))
57+
LightningError::ConnectionError(format!("Cannot load client key: {}", err))
5858
})?,
5959
))
6060
.ca_certificate(Certificate::from_pem(
6161
reader(&connection.ca_cert).await.map_err(|err| {
62-
LightningError::ConnectionError(format!("Cannot loads CA certificate: {}", err))
62+
LightningError::ConnectionError(format!("Cannot load CA certificate: {}", err))
6363
})?,
6464
));
6565

0 commit comments

Comments
 (0)