From 7068a2387a79ea705229b19bec76d3b8f7048eff Mon Sep 17 00:00:00 2001 From: Michael Green Date: Sun, 13 Oct 2024 09:54:39 +0200 Subject: [PATCH] feat: added missing docstring element to round_date. --- src/datedocstrings.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/datedocstrings.jl b/src/datedocstrings.jl index 6a79b84..6355516 100644 --- a/src/datedocstrings.jl +++ b/src/datedocstrings.jl @@ -173,7 +173,7 @@ Round a DateTime, Date, or Time object to the nearest specified unit. # Arguments `dt`: A DateTime, Date, or Time object (can contain missing values in a DataFrame). -`unit`: A string specifying the units to use for rounding. The units can be one of the following: "year", "month", "day", "hour", "minute", "second". +`unit`: A string specifying the units to use for rounding. The units can be one of the following: "year", "quarter", "month", "day", "hour", "minute", "second". # Returns The DateTime, Date, or Time object rounded to the nearest specified unit. If the input is missing, the function returns a missing value.