1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

doc: fix typo (#6370)

This commit is contained in:
igrekus 2020-09-15 16:50:35 +03:00 committed by GitHub
parent 01b28ef1a5
commit 4b1e330219
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -317,7 +317,7 @@ any // similar to C's void* and Go's interface{}
Please note that unlike C and Go, `int` is always a 32 bit integer.
There is an exceptions to the rule that all operators
There is an exception to the rule that all operators
in V must have values of the same type on both sides. A small primitive type
on one side can be automatically promoted if it fits
completely into the data range of the type on the other side.