Skip to content

Commit

Permalink
Remove extra dot in error messages (#7974)
Browse files Browse the repository at this point in the history
  • Loading branch information
4e6 authored Oct 5, 2023
1 parent 022a5b0 commit 5a1aaed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use crate::binary::API;

#[allow(missing_docs)]
#[derive(Fail, Debug)]
#[fail(display = "Failed to initialize language server binary connection: {}.", _0)]
#[fail(display = "Failed to initialize language server binary connection: {}", _0)]
pub struct FailedToInitializeProtocol(failure::Error);


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use uuid::Uuid;

#[allow(missing_docs)]
#[derive(Fail, Debug)]
#[fail(display = "Failed to initialize language server RPC connection: {}.", _0)]
#[fail(display = "Failed to initialize language server RPC connection: {}", _0)]
pub struct FailedToInitializeProtocol(failure::Error);

#[allow(missing_docs)]
Expand Down

0 comments on commit 5a1aaed

Please sign in to comment.