Skip to content

Commit

Permalink
docs: remove an extra backtick (#1780)
Browse files Browse the repository at this point in the history
Removed an extra backtick "`".

 Noticed it while reading the doc, so let's remove it.
  • Loading branch information
SteveLauC authored Jul 16, 2024
1 parent b875b0b commit 2b619c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pgrx/src/pgbox.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use std::ptr::NonNull;
/// Depending on its usage, it'll interoperate correctly with Rust's Drop semantics, such that the
/// backing Postgres-allocated memory is `pfree()'d` when the `PgBox<T>` is dropped, but it is
/// possible to effectively return management of the memory back to Postgres (to free on Transaction
/// end, for example) by calling `::into_pg()` or ``::into_pg_boxed()`. This is especially useful
/// end, for example) by calling `::into_pg()` or `::into_pg_boxed()`. This is especially useful
/// for returning values back to Postgres.
///
/// ## Examples
Expand Down

0 comments on commit 2b619c1

Please sign in to comment.