From 0951cee26ff76eaefd6b1ff40dd689020c9c39d4 Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Tue, 11 Apr 2023 11:36:44 +0200 Subject: [PATCH] Change wording of list of implementations --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7295bf716..3f6599a0c 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ pub fn shave_the_yak(yak: &mut Yak) { ### In executables In order to produce log output, executables have to use a logger implementation compatible with the facade. -There are many available implementations to choose from, here are some of the most popular ones: +There are many available implementations to choose from, here are some options: * Simple minimal loggers: * [`env_logger`](https://docs.rs/env_logger/*/env_logger/) @@ -81,7 +81,7 @@ There are many available implementations to choose from, here are some of the mo * For WebAssembly binaries: * [`console_log`](https://docs.rs/console_log/*/console_log/) * For dynamic libraries: - * You may need to construct [an FFI-safe wrapper over `log`](https://github.com/rust-lang/log/issues/421) to initialize in your libraries. + * You may need to construct [an FFI-safe wrapper over `log`](https://github.com/rust-lang/log/issues/421) to initialize in your libraries. * Utilities: * [`log_err`](https://docs.rs/log_err/*/log_err/)