Skip to content

Commit e52f506

Browse files
neilconwaymartin-g
andauthored
Fix comment typos
Co-authored-by: Martin Grigorov <martin-g@users.noreply.github.com>
1 parent e2272f0 commit e52f506

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

datafusion/expr-common/src/signature.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ pub enum Arity {
158158
pub enum TypeSignature {
159159
/// One or more arguments of a common type out of a list of valid types.
160160
///
161-
/// For functions that take no arguments (e.g. `random()`), see [`TypeSignature::Nullary`]).
161+
/// For functions that take no arguments (e.g. `random()`), see [`TypeSignature::Nullary`].
162162
///
163163
/// # Examples
164164
///
@@ -209,7 +209,7 @@ pub enum TypeSignature {
209209
/// (numeric is preferred over string).
210210
///
211211
/// Note:
212-
/// - For functions that take no arguments (e.g. `random()`), see [`TypeSignature::Nullary`]).
212+
/// - For functions that take no arguments (e.g. `random()`), see [`TypeSignature::Nullary`].
213213
/// - If all arguments have type [`DataType::Null`], they are coerced to `Utf8`
214214
///
215215
/// [`comparison_coercion`]: crate::type_coercion::binary::comparison_coercion
@@ -247,7 +247,7 @@ pub enum TypeSignature {
247247
/// For example, if a function is called with (utf8, large_utf8), all
248248
/// arguments will be coerced to `LargeUtf8`
249249
///
250-
/// For functions that take no arguments (e.g. `random()`), use [`TypeSignature::Nullary`]).
250+
/// For functions that take no arguments (e.g. `random()`), use [`TypeSignature::Nullary`].
251251
String(usize),
252252
/// No arguments
253253
Nullary,

0 commit comments

Comments
 (0)