From 3402904aea8eb31ca0c6c237911ebad7f983b8ad Mon Sep 17 00:00:00 2001 From: Samar Dhwoj Acharya Date: Tue, 15 Jan 2019 15:41:25 -0600 Subject: [PATCH] fix spelling errors on distillery lesson (#1690) --- en/lessons/libraries/distillery.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/en/lessons/libraries/distillery.md b/en/lessons/libraries/distillery.md index 30feee3a98..a68178e5a2 100644 --- a/en/lessons/libraries/distillery.md +++ b/en/lessons/libraries/distillery.md @@ -17,13 +17,13 @@ A release is a package containing your compiled Erlang/Elixir code (i.e [BEAM](h A release will contain the folowing: * a /bin folder - * This contains a script that is the starting point to running your entire application + * This contains a script that is the starting point to running your entire application. * a /lib folder * This contains the compiled bytecode of the application along with any dependencies. -* a /relealses folder - * This contains metadata about the release as well as hooks and custom commands +* a /releases folder + * This contains metadata about the release as well as hooks and custom commands. * a /erts-VERSION - * This contains the Erlang runtime which will allow a machine to run your application without having Erland or Elixir installed + * This contains the Erlang runtime which will allow a machine to run your application without having Erlang or Elixir installed. ### Getting started/installation