From 453534138f54ec0de3b488595de7a320ed6163a7 Mon Sep 17 00:00:00 2001 From: meteorgan Date: Wed, 1 Jan 2025 16:19:31 +0800 Subject: [PATCH] fix number --- core/src/docs/rfcs/5485_conditional_reader.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/src/docs/rfcs/5485_conditional_reader.md b/core/src/docs/rfcs/5485_conditional_reader.md index d5549ace462c..bde9e6aafe33 100644 --- a/core/src/docs/rfcs/5485_conditional_reader.md +++ b/core/src/docs/rfcs/5485_conditional_reader.md @@ -81,7 +81,7 @@ The main implementation will include: 2. Add the related functions to `FutureReader` -2. Add new capability flags: +3. Add new capability flags: ```rust pub struct Capability { // ... other fields @@ -89,8 +89,7 @@ pub struct Capability { pub read_with_if_unmodified_since: bool, } ``` - -3. implement `if_modified_since`, `if_unmodified_since` for the underlying storage service. +4. implement `if_modified_since`, `if_unmodified_since` for the underlying storage service. # Drawbacks