aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-09-07 23:39:00 -0600
committerkballou <kballou@devnulllabs.io>2017-09-02 19:31:45 -0600
commite30f2c565709d3ebc0b5e78d8c176bd3fb3f022a (patch)
treea492829e215a0ff70e3778dd1de337d4b4d4a062
parent6f16404c05cd5057ddd349caa3862363a4feb767 (diff)
downloadblog.kennyballou.com-e30f2c565709d3ebc0b5e78d8c176bd3fb3f022a.tar.gz
blog.kennyballou.com-e30f2c565709d3ebc0b5e78d8c176bd3fb3f022a.tar.xz
Fix minor grammar issues
-rw-r--r--content/blog/elixir_otp_releases.markdown12
1 files changed, 6 insertions, 6 deletions
diff --git a/content/blog/elixir_otp_releases.markdown b/content/blog/elixir_otp_releases.markdown
index ac5cf6b..6936a9b 100644
--- a/content/blog/elixir_otp_releases.markdown
+++ b/content/blog/elixir_otp_releases.markdown
@@ -154,12 +154,12 @@ support thus no longer requiring the `ncurses` library altogether. We hope that
the `openssl` libraries are the same, so we don't have to worry about that
mess, and we move on.
-This time, when we attempt to deploy the application get a different, obscure
-error: something about our `musl` C library isn't found on the target system.
-Right, because we are trying to create a small image, we opted to use the
-`musl` C library because of it's size and being easily supported in the Alpine
-Linux container. Trying to use GNU C library is too cumbersome and would only
-inflate the image beyond any gains we would achieve by using Alpine in the
+This time, when we attempt to deploy the application, we get a different,
+obscure error: something about our `musl` C library isn't found on the target
+system. Right, because we are trying to create a small image, we opted to use
+the `musl` C library because of its size and being easily supported in the
+Alpine Linux container. Trying to use GNU C library is too cumbersome and would
+only inflate the image beyond any gains we would achieve by using Alpine in the
first place.
That's not going to work.