Skip to content

Commit c949b26

Browse files
stop talking about versions in comments
1 parent 30d61eb commit c949b26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pgrx/src/text.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use core::ptr;
1313
#[repr(transparent)]
1414
pub struct Text([u8]);
1515

16-
// TODO(0.12.0): strip this and make Text forward its impl to BStr fn instead
16+
// TODO: strip this and make Text forward its impl to BStr fn instead?
1717
impl Deref for Text {
1818
type Target = str;
1919
fn deref(&self) -> &str {
@@ -22,7 +22,7 @@ impl Deref for Text {
2222
}
2323
}
2424

25-
// TODO(0.12.0): strip this and make Text forward its impl to BStr fn instead
25+
// TODO: strip this and make Text forward its impl to BStr fn instead?
2626
impl DerefMut for Text {
2727
fn deref_mut(&mut self) -> &mut str {
2828
let self_ptr = self as *mut Text as *mut pg_sys::varlena;

0 commit comments

Comments
 (0)