From 974c4e57bbff68cbe8056aafceaf4cdf3206dd7a Mon Sep 17 00:00:00 2001 From: Jinpeng Date: Fri, 10 Jan 2025 18:10:02 -0500 Subject: [PATCH] remove redundant word --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 97359fda0c6..cc0678930c0 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ In general, use panics for bad states that are unreachable, unrecoverable or har For those caused by invalid user input, however, we prefer to report that invalidity gracefully as an error result instead of panicking. In general, invalid input should result in an `Error` as soon as possible. It *is* ok for code paths after validation to assume validation has -already occurred and and panic if not. See [this ticket] for more nuances. +already occurred and panic if not. See [this ticket] for more nuances. [this ticket]: https://github.com/apache/arrow-rs/issues/6737