You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Documentation of isWhitespace function on Arduino website says
Analyse if a char is a white space, that is space, formfeed ('\f'), newline ('\n'), carriage return ('\r'), horizontal tab ('\t'), and vertical tab ('\v')).
This is not correct. Implementation of isWhitespace function in arduino core defines it as a synonym of C function isblank, which only matches space and \t
The text was updated successfully, but these errors were encountered:
This has already been fixed in the English language version of the Arduino Language Reference: arduino/reference-en#595
However, the change has not been synced to this repository: #6
so the error remains in the Turkish language version of the documentation.
You're looking at the page in the Turkish language version of the reference: https://www.arduino.cc/reference/tr/language/functions/characters/iswhitespace/
note the "tr" in the URL. The reason it's in English is because the content for each translation starts as a copy of the English language content, then the translators work to translate it all to the target language. So this page has not yet been translated.
Documentation of
isWhitespace
function on Arduino website saysThis is not correct. Implementation of
isWhitespace
function in arduino core defines it as a synonym of C functionisblank
, which only matches space and \tThe text was updated successfully, but these errors were encountered: