diff --git a/check_blender_release/check_static_binaries.py b/check_blender_release/check_static_binaries.py
index 54981edab2c9e53195276a9484c2575767938eab..f467c9085ebbba7841fd8d1644355c449d36d1b5 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)