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] 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]>
0 commit comments