From 4273ce608817b389a066a7c99ab88e37240530e2 Mon Sep 17 00:00:00 2001 From: Caleb Etemesi Date: Fri, 26 Jul 2024 16:14:55 +0300 Subject: [PATCH] Fix misleading typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b9554817..90be0adb 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ The set of codecs aim to have the following features in order of priority - Safe - We (99.9%) won't segfault on you, unless you do something silly. - Decoders are fuzz tested in CI when a feature is added and also fuzz tested every day to catch bugs. - - Safety is kept to almost zero in most crates, with some having `#![forbid(unsafe)]` most unsafe comes from `SIMD` + - Unsafety is kept to almost zero in most crates, with some having `#![forbid(unsafe)]` most unsafe comes from `SIMD` routines which will reduce when [portable-simd](https://github.com/rust-lang/portable-simd) becomes mainstream - Image crashes are treated with the seriousness they deserve, i.e we fix as quickly as possible and acknowledge,whether it's a less common decoder or a useful routine.