Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Documentation] Missing data type (#817)
* [Documentation] Missing data type In the documentation of Floating Point is this example: ``` n = 0.005; // 0.005 is a floating point constant ``` This code simply won't compile and get this error : 'n' does not name a type so this Line should be : ``` const float n = 0.005; // 0.005 is a floating point constant ``` Although this error may seem trivial for some professional , but I think it seems misleading to newcomers. * Update Language/Variables/Constants/floatingPointConstants.adoc Co-authored-by: per1234 <[email protected]> Co-authored-by: per1234 <[email protected]>
- Loading branch information