From cf7fe029f45403ba027a06c55146c90f4dcace10 Mon Sep 17 00:00:00 2001 From: Mateus Nunes Date: Thu, 28 Sep 2023 09:09:00 -0300 Subject: [PATCH] Update riemann_zeta_function.c --- math/riemann_zeta_function.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/riemann_zeta_function.c b/math/riemann_zeta_function.c index 2cdc4824..4666982b 100644 --- a/math/riemann_zeta_function.c +++ b/math/riemann_zeta_function.c @@ -34,7 +34,7 @@ double complex riemann_zeta(double real_part, int num_terms) int main() { // Example of use: - double real_part = 7.0; // Real of s + double real_part = 7.0; // Real of "s" int num_terms_to_sum = 100; // Number of terms that will be added to the series, (the greater the quantity, the greater the precision) // zeta_value(double real_part, int num_terms) return double