]> jfr.im git - yt-dlp.git/blobdiff - CONTRIBUTING.md
[build] Standalone x64 builds for MacOS 10.9 (#4106)
[yt-dlp.git] / CONTRIBUTING.md
index 988a94264bb417df355989786597891841b1fffe..03681d30c1be77c11b6c582196e2f01995bb61f2 100644 (file)
@@ -457,7 +457,7 @@ ##### Example
     webpage, 'title', group='title')
 ```
 
-Here the presence or absence of other attributes including `style` is irrelevent for the data we need, and so the regex must not depend on it
+Here the presence or absence of other attributes including `style` is irrelevant for the data we need, and so the regex must not depend on it
 
 
 #### Keep the regular expressions as simple as possible, but no simpler
@@ -501,7 +501,7 @@ ### Long lines policy
 
 For example, you should **never** split long string literals like URLs or some other often copied entities over multiple lines to fit this limit:
 
-Conversely, don't unecessarily split small lines further. As a rule of thumb, if removing the line split keeps the code under 80 characters, it should be a single line.
+Conversely, don't unnecessarily split small lines further. As a rule of thumb, if removing the line split keeps the code under 80 characters, it should be a single line.
 
 ##### Examples