From 26bcf59894a380955a2ed6b0d6b0c8352c7b4030 Mon Sep 17 00:00:00 2001
From: Max Veytsman <maxim@ontoillogical.com>
Date: Mon, 24 Jul 2017 10:41:18 -0400
Subject: [PATCH] Fixes typos in docs

---
 lib/file_system.ex | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/file_system.ex b/lib/file_system.ex
index 419ad23..c535c52 100644
--- a/lib/file_system.ex
+++ b/lib/file_system.ex
@@ -24,11 +24,11 @@ defmodule FileSystem do
       iex> {:ok, pid} = FileSystem.start_link(dirs: ["/tmp/fs"])
       iex> FileSystem.subscribe(pid)
 
-  Get nstant notifications on file changes for Mac OS X:
+  Get instant notifications on file changes for Mac OS X:
 
       iex> FileSystem.start_link(dirs: ["/path/to/some/files"], listener_extra_args: "--latency=0.0")
 
-  Named monitir with specialty backend:
+  Named monitor with specified backend:
 
       iex> FileSystem.start_link(backend: :fs_mac, dirs: ["/tmp/fs"], name: :worker)
       iex> FileSystem.subscribe(:worker)
@@ -39,7 +39,7 @@ defmodule FileSystem do
   end
 
   @doc """
-  Regester current process as a subscriber of file_system worker.
+  Register the current process as a subscriber of a file_system worker.
   The pid you subscribed from will now receive messages like
 
       {:file_event, worker_pid, {file_path, events}}
-- 
GitLab