From f519a089a60d5edcf607cf956625fba722efa234 Mon Sep 17 00:00:00 2001 From: Nicolas VERHELST Date: Tue, 15 Mar 2022 17:14:22 +1100 Subject: [PATCH] Fix escape --- docs/development/CodingStyle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development/CodingStyle.md b/docs/development/CodingStyle.md index cd013ef61b..d0ca538776 100644 --- a/docs/development/CodingStyle.md +++ b/docs/development/CodingStyle.md @@ -228,7 +228,7 @@ boolean isBiQuadReady(); ## Parameter order -Data should move from right to left, as in `memcpy(void *dst, const void *src, size\_t size)`. +Data should move from right to left, as in `memcpy(void *dst, const void *src, size_t size)`. This also mimics the assignment operator (e.g. dst = src;) When a group of functions act on an 'object' then that object should be the first parameter for all the functions, e.g.: