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

CHANGELOG.md: fix typo (paralell -> parallel) (#15621)

This commit is contained in:
Wertzui123 2022-09-01 08:26:05 +02:00 committed by GitHub
parent 5e8f9b11c9
commit 95760ae82a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@
- Lots of bug fixes: 90% of all bugs ever submitted are closed.
- Major improvements to the fast native backend including linking support on Linux. The goal is to be able to self host V soon.
- Parallelized cc step. Speeds up -prod and clang/gcc compilation by 300-500% (depending on
the number of cores). Experimental and hidden behind a -paralell-cc flag, soon to be the default.
the number of cores). Experimental and hidden behind a -parallel-cc flag, soon to be the default.
- New keyword/type: `nil`. Only to be used inside `unsafe`. Replaces `voidptr(0)`.
- V can now find code in the `src/` directory. This allows making V repos much cleaner.
- Intel C compiler support.