From 7c8926b645b07fc0a2bbc3f20fa2b0533f2be7dc Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Fri, 21 Apr 2023 13:35:58 +0200 Subject: [PATCH] chore(doc): fix typo --- scripts/no_tfhe_typo.sh | 2 +- tfhe/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.