Skip to content

Commit

Permalink
Fix order of root parts
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt committed Oct 31, 2022
1 parent 395e45e commit 545aaa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Documentation/RootDocumentationPartComparer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ private static int GetRank(RootDocumentationParts part)
return 1;
case RootDocumentationParts.Namespaces:
return 2;
case RootDocumentationParts.ClassHierarchy:
return 3;
case RootDocumentationParts.Types:
return 3;
case RootDocumentationParts.ClassHierarchy:
return 4;
case RootDocumentationParts.Other:
return 5;
Expand Down

0 comments on commit 545aaa1

Please sign in to comment.