From 9a09e8ce323f6a28548290869833f13feb8dd36f Mon Sep 17 00:00:00 2001
From: Robbert van der Helm <mail@robbertvanderhelm.nl>
Date: Fri, 8 Jul 2022 02:18:24 +0200
Subject: [PATCH] Fix typos in Cargo.toml

---
 Cargo.toml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index 0d896caa..db649f4b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -41,18 +41,18 @@ members = [
 default = ["vst3"]
 
 # Enabling this feature will cause the plugin to terminate when allocations
-# occur in the processing function while compiling in debug mode. Keep in mind
-# that most panic handlers will also allocate, so temporarily disabling this
+# occur in the processing function during debug builds. Keep in mind that panics
+# may also allocate if they use string formatting, so temporarily disabling this
 # feature may be necessary when debugging panics in DSP code.
 assert_process_allocs = ["dep:assert_no_alloc"]
 # Enables an export target for standalone binaries through the
-# `nih_export_standalone()` function. Disabled by default, as this requires
+# `nih_export_standalone()` function. Disabled by default as this requires
 # building additional dependencies for audio and MIDI handling.
 standalone = ["dep:anyhow", "dep:baseview", "dep:clap", "dep:jack"]
 # Enables the `nih_export_vst3!()` macro. Enabled by default. This feature
 # exists mostly for GPL-compliance reasons, since even if you don't use the VST3
 # wrapper you might otherwise still include a couple (unused) symbols from the
-# `vst3-sys` create.
+# `vst3-sys` crate.
 vst3 = ["dep:vst3-sys"]
 # Add adapters to the Buffer object for reading the channel data to and from
 # `std::simd` vectors. Requires a nightly compiler.