From 3ee979c1eb0752bae62295c78e367660ae084bde Mon Sep 17 00:00:00 2001
From: Sergey Sharybin <sergey.vfx@gmail.com>
Date: Fri, 3 May 2019 10:18:29 +0200
Subject: [PATCH] Celaup: Spelling in comment

---
 check_blender_release/check_static_binaries.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/check_blender_release/check_static_binaries.py b/check_blender_release/check_static_binaries.py
index 54981ed..f467c90 100644
--- a/check_blender_release/check_static_binaries.py
+++ b/check_blender_release/check_static_binaries.py
@@ -78,10 +78,10 @@ def getNeededLibrariesLDD(binary_filepath):
     This function uses ldd to collect libraries which binary depends on.
 
     Not totally safe since ldd might actually execute the binary to get it's
-    symbols and will also collect indirect dependnecies which might not be
+    symbols and will also collect indirect dependencies which might not be
     desired.
 
-    Has advantage of telling that some dependnecy library is not found.
+    Has advantage of telling that some dependency library is not found.
     """
     ldd_command = ("ldd", str(binary_filepath))
     ldd_output = subprocess.check_output(ldd_command, stderr=subprocess.STDOUT)
-- 
GitLab