From bffeabb80775090845587ee9b9a28f473a95428a Mon Sep 17 00:00:00 2001 From: dvetsch75 <70990721+dvetsch75@users.noreply.github.com> Date: Tue, 17 Sep 2024 13:16:52 -0500 Subject: [PATCH] fix typo in @orderby docstring (#402) mulitple s/b multiple --- src/macros.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macros.jl b/src/macros.jl index acb8ebc..fd65354 100644 --- a/src/macros.jl +++ b/src/macros.jl @@ -1264,7 +1264,7 @@ given by its arguments (but does not create new columns) and sorts the given `DataFrame` on the result, returning a new `DataFrame`. Inputs to `@orderby` can come in two formats: a `begin ... end` block, in which case each -line in the block is a separate ordering operation, and as mulitple +line in the block is a separate ordering operation, and as multiple arguments. For example, the following two statements are equivalent: ```julia