You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by ta...@apache.org on 2023/06/26 14:55:14 UTC

[calcite] 02/04: fix typo

This is an automated email from the ASF dual-hosted git repository.

tanner pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git

commit a60d403486d6ad599ebc353b23ff4745b5c776ff
Author: zoudan <zo...@bytedance.com>
AuthorDate: Wed Jun 7 10:18:02 2023 +0800

    fix typo
---
 site/_docs/reference.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/site/_docs/reference.md b/site/_docs/reference.md
index 64e50c3477..852559b7e0 100644
--- a/site/_docs/reference.md
+++ b/site/_docs/reference.md
@@ -2748,7 +2748,7 @@ BigQuery's type system uses confusingly different names for types and functions:
 | b | LENGTH(string)                                 | Equivalent to `CHAR_LENGTH(string)`
 | b | LOG(numeric1 [, numeric2 ])                    | Returns the logarithm of *numeric1* to base *numeric2*, or base e if *numeric2* is not present
 | b o | LPAD(string, length [, pattern ])            | Returns a string or bytes value that consists of *string* prepended to *length* with *pattern*
-| b | TO_BASE32(string)                              | Converts the *string* to base-32 encoded form and returns a encoded string
+| b | TO_BASE32(string)                              | Converts the *string* to base-32 encoded form and returns an encoded string
 | b | FROM_BASE32(string)                            | Returns the decoded result of a base-32 *string* as a string
 | m | TO_BASE64(string)                              | Converts the *string* to base-64 encoded form and returns a encoded string
 | b m | FROM_BASE64(string)                          | Returns the decoded result of a base-64 *string* as a string