Update docs/handbook/guidelines/best_practice_c_cpp.md #21

Merged
Julian Eisel merged 1 commits from Mangal-Kushwah/blender-developer-docs:Typo-Fix into main 2024-02-13 11:03:25 +01:00
Showing only changes of commit 79b1cf1260 - Show all commits

View File

@ -55,7 +55,7 @@ Notes relating to fixed size char buffer use:
- When performing low level operations on byte arrays, it's preferable
to calculate sizes and use `memcpy` to construct the buffer.
- Complex logic to construct fixed size char buffers should assert the
final size fits withing buffer size.
final size fits within buffer size.
### Exceptions