From 569e291cd3742b832bc91f61d021fb2e796089a8 Mon Sep 17 00:00:00 2001 From: Pantonshire Date: Mon, 16 May 2022 21:15:45 +0100 Subject: [PATCH] Remove TODO comment --- src/strings.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/strings.rs b/src/strings.rs index 1c96229..a07aab1 100644 --- a/src/strings.rs +++ b/src/strings.rs @@ -21,8 +21,6 @@ use sqlx::{ use buf::{StackString, HeapString}; -// TODO: inlining - /// A non-growable string where strings 22 bytes or shorter are stored on the stack and longer /// strings are stored on the heap. ///