In Lua docs for wiki, alphabeticalise functions within module

This commit is contained in:
YoshiRulz 2021-08-06 09:11:24 +10:00
parent d37a818f96
commit ebd18df440
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ namespace BizHawk.Client.Common
.AppendLine();
}
foreach (var func in this.Where(lf => lf.Library == library.Name))
foreach (var func in this.Where(lf => lf.Library == library.Name).OrderBy(lf => lf.Name))
{
string deprecated = func.IsDeprecated ? "__[[deprecated]]__ " : "";
sb