diff --git a/scripts/no_tfhe_typo.sh b/scripts/no_tfhe_typo.sh index 74d3834934..e589d29e10 100755 --- a/scripts/no_tfhe_typo.sh +++ b/scripts/no_tfhe_typo.sh @@ -6,7 +6,7 @@ THIS_SCRIPT_NAME="$(basename "$0")" TMP_FILE="$(mktemp)" -COUNT="$(git grep -rniI "thfe" . | grep -v "${THIS_SCRIPT_NAME}" | \ +COUNT="$(git grep -rniI "thfe\|tfhr\|thfr" . | grep -v "${THIS_SCRIPT_NAME}" | \ tee "${TMP_FILE}" | wc -l | tr -d '[:space:]')" cat "${TMP_FILE}" diff --git a/tfhe/src/lib.rs b/tfhe/src/lib.rs index 4f955a2a01..cf6c76dde3 100644 --- a/tfhe/src/lib.rs +++ b/tfhe/src/lib.rs @@ -1,4 +1,4 @@ -//! Welcome to the TFHR-rs API documentation! +//! Welcome to the TFHE-rs API documentation! //! //! TFHE-rs is a fully homomorphic encryption (FHE) library that implements Zama's variant of TFHE.