From a98a001e1364d824e9e74e08253b70f9fbadf07a Mon Sep 17 00:00:00 2001
From: Sean Yesmunt <sean@lbry.io>
Date: Thu, 18 Oct 2018 11:23:08 -0400
Subject: [PATCH] fix typo

---
 src/renderer/redux/actions/content.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/renderer/redux/actions/content.js b/src/renderer/redux/actions/content.js
index b656f5263..62107b277 100644
--- a/src/renderer/redux/actions/content.js
+++ b/src/renderer/redux/actions/content.js
@@ -34,7 +34,7 @@ export function doUpdateLoadStatus(uri: string, outpoint: string) {
     const setNextStatusUpdate = () =>
       setTimeout(() => {
         // We need to check if outpoint still exists first because user are able to delete file (outpoint) while downloading.
-        // If fiel is already deleted, no point to still try update load status
+        // If a file is already deleted, no point to still try update load status
         const byOutpoint = selectFileInfosByOutpoint(getState());
         if (byOutpoint[outpoint]) {
           dispatch(doUpdateLoadStatus(uri, outpoint));