Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #43 from solar05/patch-1
Browse files Browse the repository at this point in the history
Few README improvements
  • Loading branch information
Aleksei Matiushkin committed May 13, 2023
2 parents b3fd887 + 26c60b1 commit 78ee09a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
all having the lifecycle _and_ the _FSM_ behind.

Consider the service, that polls the market rates from several
diffferent sources, allowing semi-automated trading based
different sources, allowing semi-automated trading based
on predefined conditions. For each bid, the process is to be spawn,
polling the external resources. Once the bid condition is met,
the bid gets traded.
Expand All @@ -23,7 +23,7 @@ _FSM_ instances leverage [`Finitomata`](https://hexdocs.pm/finitomata)
library, which should be used alone if no recurrent `perform` should be
accomplished _or_ if the instances are not uniform.

Typical code for the `Siblings.Worker` implementation would be as follows
Typical code for the `Siblings.Worker` implementation would be as follows:

```elixir
defmodule MyApp.Worker do
Expand Down Expand Up @@ -69,7 +69,7 @@ defmodule MyApp.Worker do
end
```

Now it can be used as shown below
Now it can be used as shown below:

```elixir
{:ok, pid} = Siblings.start_link()
Expand Down

0 comments on commit 78ee09a

Please sign in to comment.