Docs: replace http url with https, use ripgrep project url and fix typo

This commit is contained in:
pagedown
2021-11-30 18:53:58 +08:00
parent 1d88371604
commit 8ed6ee97b2
5 changed files with 9 additions and 9 deletions

View File

@@ -64,7 +64,7 @@ extern PyTypeObject Color_Type;
static inline double
rgb_luminance(ARGB32 c) {
// From ITU BT 601 http://www.itu.int/rec/R-REC-BT.601
// From ITU BT 601 https://www.itu.int/rec/R-REC-BT.601
return 0.299 * c.red + 0.587 * c.green + 0.114 * c.blue;
}

View File

@@ -114,7 +114,7 @@ def get_macos_shortcut_for(
# for maximum robustness we should use opts.alias_map to resolve
# aliases however this requires parsing everything on startup which could
# be potentially slow. Lets just hope the user doesnt alias these
# fucntions.
# functions.
ans = None
candidates = []
qkey = tuple(defn.split())