Correct indentation issues

This commit is contained in:
Erdem Yerebasmaz
2023-11-07 14:11:26 +03:00
committed by Erdem Yerebasmaz
parent 1aa91aab17
commit baa365e926
6 changed files with 10 additions and 11 deletions

View File

@@ -12,6 +12,6 @@ Future<void> getLspInfo() async {
Future<void> connectLsp(String lspId) async {
// ANCHOR: connect-lsp
return await BreezSDK().connectLSP(lspId);
await BreezSDK().connectLSP(lspId);
// ANCHOR_END: connect-lsp
}