From cb06c50dcd29c33519459294a8d2154c1d3ee49d Mon Sep 17 00:00:00 2001 From: vil02 <65706193+vil02@users.noreply.github.com> Date: Sun, 8 Sep 2024 18:09:55 +0200 Subject: [PATCH] style: remove duplicated `the` --- src/dynamic_programming/maximum_subarray.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dynamic_programming/maximum_subarray.rs b/src/dynamic_programming/maximum_subarray.rs index a8cfe667933..740f8009d60 100644 --- a/src/dynamic_programming/maximum_subarray.rs +++ b/src/dynamic_programming/maximum_subarray.rs @@ -1,4 +1,4 @@ -//! This module provides a function to find the the largest sum of the subarray +//! This module provides a function to find the largest sum of the subarray //! in a given array of integers using dynamic programming. It also includes //! tests to verify the correctness of the implementation.