In some cases, the async C# keyword is not correctly highlighted on Github and in Atom. This happens when it is used in async lambdas, in async methods everything is fine. This happens only with assignment expressions. So, please, take a look!
Load = Command.CreateFromTask(async () => { }); // Not OK
Command.CreateFromTask(async () => { }); // OK
Load = Command.CreateFromTask(async x => { }); // Also OK (but what happened to => symbol?)
In some cases, the async C# keyword is not correctly highlighted on Github and in Atom. This happens when it is used in async lambdas, in async methods everything is fine. This happens only with assignment expressions. So, please, take a look!