File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -93,8 +93,8 @@ ERROR: MethodError: Cannot `convert` an object of type String to an object of ty
93
93
```
94
94
95
95
Some languages consider parsing strings as numbers or formatting numbers as strings to be conversions
96
- (many dynamic languages will even perform conversion for you automatically), however Julia does
97
- not: even though some strings can be parsed as numbers, most strings are not valid representations
96
+ (many dynamic languages will even perform conversion for you automatically). This is not the case in Julia.
97
+ Even though some strings can be parsed as numbers, most strings are not valid representations
98
98
of numbers, and only a very limited subset of them are. Therefore in Julia the dedicated [ ` parse ` ] ( @ref )
99
99
function must be used to perform this operation, making it more explicit.
100
100
You can’t perform that action at this time.
0 commit comments