From 76e5ca7379d09561abbdaa8ffdd1eac164184ca4 Mon Sep 17 00:00:00 2001 From: Alexandre Hamez Date: Fri, 19 Jun 2020 22:26:29 +0200 Subject: [PATCH] Typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6393ef77..3626f827 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Protox is an Elixir library to work with [Google's Protocol Buffers](https://developers.google.com/protocol-buffers) (aka protobuf), versions 2 and 3. -Generally speaking, a lof of efforts have been put into making sure that the library is reliable (for instance using [property based testing](https://github.com/alfert/propcheck) and by having a [100% code coverage](https://coveralls.io/github/ahamez/protox?branch=master)). Therefore, this library passes all the tests of the conformance checker provided by Google. See [Conformance](#conformance) section for more information. +Generally speaking, a lot of efforts have been put into making sure that the library is reliable (for instance using [property based testing](https://github.com/alfert/propcheck) and by having a [100% code coverage](https://coveralls.io/github/ahamez/protox?branch=master)). Therefore, this library passes all the tests of the conformance checker provided by Google. See [Conformance](#conformance) section for more information. This library is easy to use: you just point to the `*.proto` files or give the schema to the `Protox` macro, no need to generate any file! Furthermore, it provides a full-blown Elixir experience with protobuf messages. For instance, given the following protobuf `msg.proto` file: ```proto @@ -350,7 +350,7 @@ You can alternatively launch these conformance tests with `mix test` by setting You can launch benchmarks to see how Protox perform: ``` -mix run ./benchmarks/generate_payloads.exs # first-time only, generates random payloads +mix run ./benchmarks/generate_payloads.exs # first time only, generates random payloads mix run ./benchmarks/run.exs --lib=./benchmarks/protox.exs mix run ./benchmarks/load.exs ```