OP-TEE / optee_docs

This git contains the official documentation for the OP-TEE project
BSD 2-Clause "Simplified" License
58 stars 96 forks source link

core: fix bad space char in native interrupt API description #228

Closed etienne-lms closed 10 months ago

etienne-lms commented 10 months ago

Removes non-ASCII characters 0xc2 0xa0 and fix indentation with space chars 0x20 in core native interrupts API function description. Documentation rendering was affected by these characters.

Fixes: eda1e0fd8bb4 ("core: using native interrupt handlers")

jforissier commented 10 months ago

Out of curiosity I searched for what those 0xc2 0xa0 were, they are the UTF-8 encoding of the Unicode U+00A0 code point a.k.a. "NO-BREAK SPACE".

Reviewed-by: Jerome Forissier <jerome.forissier@linaro.org>

etienne-lms commented 10 months ago

I have no idea how I introduced them. Review tag applied, thanks.