File tree Expand file tree Collapse file tree
datafusion/expr-common/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ pub enum Arity {
158158pub 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 ,
You can’t perform that action at this time.
0 commit comments