nopSolutions / nopCommerce-Docs

nopCommerce documentation
https://www.nopcommerce.com/
67 stars 155 forks source link

Missing a semicolon #435

Closed daisukefuji closed 1 year ago

daisukefuji commented 1 year ago

This coding style example want to explain "Insert space after a comma". But it's missing a semicolon.

before

//Wrong
int[] x = new int[] { 1,2,3,4,5 }

after

//Wrong
int[] x = new int[] { 1,2,3,4,5 };
AndreiMaz commented 1 year ago

Thank a lot for your contribution