Skip to content

Commit

Permalink
Readme fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeDP committed Mar 17, 2018
1 parent 5b9b16b commit ad5a0b7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ It stands somewhere in the middle, trying to mix the 2 concepts.
It does not provide any faciliting to build an event loop; it does provide its own event loop though.
You may find some/lots of similarities between a libmodule's MODULE and an Actor.
Indeed, libmodule was heavily inspired by my own actor library experience with [akka](https://akka.io/) for its API.
It can probably be expanded to an actor library with some work. I may even work on that at a certain point.

## Is it portable?

Expand All @@ -36,10 +35,10 @@ It helps you to write standard and clean projects with small units, so called mo
You may notice though that recv method takes a message_t as parameter.
This parameter can be used as module's messaging system (with PubSub mechanism too).

## But.. why?
## But...why?

We all know OOP is not a solution to everything and C is still a beautiful and much used language.
Still, I admit to love code modularity that OOP enforces; moreover, I realized I was using same code/abstraction over and over in my C projects (both side projects and at my job).
Still, I admit to love code modularity that OOP enforces; moreover, I realized that I was using same code and abstractions over and over in my C projects (both side projects and at my job).
So I thought that writing a library to achieve those same abstractions in a cleaner and simpler way was the right thing to do.

## Build dep and how to build
Expand Down

0 comments on commit ad5a0b7

Please sign in to comment.