Skip to content

Commit eb4978e

Browse files
author
Florian Rieger
committed
Fixed Markdown syntax of Troubleshooting section in Readme.md
1 parent 4c9e137 commit eb4978e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -315,15 +315,15 @@ If you use the Dependency Injection approach described above you can easily mock
315315
simulate, like a long taking webservice request or a full database.
316316

317317
## Troubleshooting
318-
0. I can not register my Interactor at the InteractorExecuter. I get a Compiler Error.
319-
* Make sure the `interactor` implements the `Interactor` protocol
320-
* Make sure the `request` is a subclass of `InteractorRequest<Response>` and is correctly typed.
321-
* Make sure the `request` is an initialized object instance.
322-
323-
0. Calling execute on the InteractorExecuter does not call the execute method of my Interactor.
324-
* Make sure you have registered the Interactor with the corresponding InteractoRequest by calling the `registerInteractor()` function on the `InteractorExecuter`.
325-
* Make sure you have called the `registerInteractor()` and the `execute()` function on the **same** instance of `InteractorExecuter`.
326-
* Make sure you have set an `onError` closure on the `request`. It might provide additional details in the error message about what went wrong.
318+
1. I can not register my Interactor at the InteractorExecuter. I get a Compiler Error.
319+
* Make sure the `interactor` implements the `Interactor` protocol
320+
* Make sure the `request` is a subclass of `InteractorRequest<Response>` and is correctly typed.
321+
* Make sure the `request` is an initialized object instance.
322+
323+
1. Calling execute on the InteractorExecuter does not call the execute method of my Interactor.
324+
* Make sure you have registered the Interactor with the corresponding InteractoRequest by calling the `registerInteractor()` function on the `InteractorExecuter`.
325+
* Make sure you have called the `registerInteractor()` and the `execute()` function on the **same** instance of `InteractorExecuter`.
326+
* Make sure you have set an `onError` closure on the `request`. It might provide additional details in the error message about what went wrong.
327327

328328
## Credits
329329
Special thanks from [Florian Rieger](https://github.com/florieger) to the people that helped getting ACInteractor together.

0 commit comments

Comments
 (0)