@@ -83,7 +83,7 @@ pub fn trivial_encrypt_be_bytes(output_type: i16, input_bytes: &[u8]) -> Support
8383 } ;
8484 match output_type {
8585 0 => SupportedFheCiphertexts :: FheBool (
86- FheBool :: try_encrypt_trivial ( last_byte > 0 ) . expect ( "trival encrypt bool" ) ,
86+ FheBool :: try_encrypt_trivial ( last_byte > 0 ) . expect ( "trivial encrypt bool" ) ,
8787 ) ,
8888 1 => SupportedFheCiphertexts :: FheUint4 (
8989 FheUint4 :: try_encrypt_trivial ( last_byte) . expect ( "trivial encrypt 4" ) ,
@@ -740,7 +740,7 @@ pub fn perform_fhe_operation(
740740 fhe_operation_int : i16 ,
741741 input_operands : & [ SupportedFheCiphertexts ] ,
742742 _: usize ,
743- // for deterministc randomness functions
743+ // for deterministic randomness functions
744744) -> Result < SupportedFheCiphertexts , FhevmError > {
745745 perform_fhe_operation_impl ( fhe_operation_int, input_operands)
746746}
@@ -750,7 +750,7 @@ pub fn perform_fhe_operation(
750750 fhe_operation_int : i16 ,
751751 input_operands : & [ SupportedFheCiphertexts ] ,
752752 gpu_idx : usize ,
753- // for deterministc randomness functions
753+ // for deterministic randomness functions
754754) -> Result < SupportedFheCiphertexts , FhevmError > {
755755 use crate :: gpu_memory:: { get_op_size_on_gpu, release_memory_on_gpu, reserve_memory_on_gpu} ;
756756
@@ -767,7 +767,7 @@ pub fn perform_fhe_operation(
767767pub fn perform_fhe_operation_impl (
768768 fhe_operation_int : i16 ,
769769 input_operands : & [ SupportedFheCiphertexts ] ,
770- // for deterministc randomness functions
770+ // for deterministic randomness functions
771771) -> Result < SupportedFheCiphertexts , FhevmError > {
772772 let fhe_operation: SupportedFheOperations = fhe_operation_int. try_into ( ) ?;
773773 match fhe_operation {
0 commit comments