Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update generic type name of TableIterator #1905

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pgrx/src/iter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ where
///
/// [`TableIterator`] is typically used as the return type of a `#[pg_extern]`-style function,
/// indicating that the function returns a table of named columns. [`TableIterator`] is
/// generic over `T`, but that `T` must be a Rust tuple containing one or more elements. They
/// generic over `Row`, but that `Row` must be a Rust tuple containing one or more elements. They
/// must also be "named" using pgrx's [`name!`][crate::name] macro. See the examples below.
///
/// It is a lightweight wrapper around an iterator, which you provide during construction. The
Expand Down
Loading