summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-09-07 23:39:00 -0600
committerkballou <kballou@devnulllabs.io>2016-09-07 23:39:00 -0600
commitebf04efe1fb8c1fc4313644ba9d4661f427ad1f8 (patch)
treeb1b8e451f40fa519a64178ffbd83ecb07b80d784
parenta1bbd00c987042cee5cc8bd3aae8453f419ccf3f (diff)
downloadkennyballou.com-ebf04efe1fb8c1fc4313644ba9d4661f427ad1f8.tar.gz
kennyballou.com-ebf04efe1fb8c1fc4313644ba9d4661f427ad1f8.tar.xz
Fix minor grammar issues
-rw-r--r--blag/content/blog/elixir_otp_releases.markdown12
1 files changed, 6 insertions, 6 deletions
diff --git a/blag/content/blog/elixir_otp_releases.markdown b/blag/content/blog/elixir_otp_releases.markdown
index ac5cf6b..6936a9b 100644
--- a/blag/content/blog/elixir_otp_releases.markdown
+++ b/blag/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.