diff --git a/README.md b/README.md index aa015f84..71d3f454 100644 --- a/README.md +++ b/README.md @@ -35,9 +35,19 @@ Gradient comes with a Mix task that runs the typechecker on an Elixir project: mix gradient ``` -And presents errors in Elixir syntax: +And presents errors in Elixir syntax. -![Result after simple app analysis](examples/simple_app_result.png) +Here is an example with some errors: + +![Result of app with errors](examples/failure.png) + +And here is an example of an application that has no issues: + +![Result of app without errors](examples/success.png) + +Also, did we mention the analysis process is lightning fast? + +![Speed of analyzing app with errors](examples/failure.gif) The `examples/` folder contains example applications showing how the produced error messages look like. diff --git a/examples/failure.gif b/examples/failure.gif new file mode 100644 index 00000000..fff208d2 Binary files /dev/null and b/examples/failure.gif differ diff --git a/examples/failure.png b/examples/failure.png new file mode 100644 index 00000000..01725327 Binary files /dev/null and b/examples/failure.png differ diff --git a/examples/simple_app_result.png b/examples/simple_app_result.png deleted file mode 100644 index db15ee35..00000000 Binary files a/examples/simple_app_result.png and /dev/null differ diff --git a/examples/success.png b/examples/success.png new file mode 100644 index 00000000..67fab60f Binary files /dev/null and b/examples/success.png differ