Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche committed Jun 26, 2024
1 parent 351d979 commit f3dc725
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cpp/src/arrow/compute/api_scalar.h
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ class ARROW_EXPORT PadOptions : public FunctionOptions {
/// What to pad the string with. Should be one codepoint (Unicode)/byte (ASCII).
std::string padding;
/// What to do if there is an odd number of padding characters (in case of centered
/// padding). Defaults to alignig on the left (i.e. adding the extra padding character
/// padding). Defaults to aligning on the left (i.e. adding the extra padding character
/// on the right)
bool lean_left_on_odd_padding = true;
};
Expand Down
2 changes: 1 addition & 1 deletion python/pyarrow/_compute.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1124,7 +1124,7 @@ class PadOptions(_PadOptions):
What to pad the string with. Should be one byte or codepoint.
lean_left_on_odd_padding : bool, default True
What to do if there is an odd number of padding characters (in case
of centered padding). Defaults to alignig on the left (i.e. adding
of centered padding). Defaults to aligning on the left (i.e. adding
the extra padding character on the right).
"""

Expand Down

0 comments on commit f3dc725

Please sign in to comment.