1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-15 20:35:33 +03:00

Fix escape

This commit is contained in:
Nicolas VERHELST 2022-03-15 17:14:22 +11:00
parent dcdf5e6af8
commit f519a089a6

View file

@ -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.: