Skip to content

Commit

Permalink
Update comment to reflect how RuntimeFeatures should be defined
Browse files Browse the repository at this point in the history
  • Loading branch information
Omar Tawfik committed Apr 13, 2017
1 parent 583713b commit 392c18f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ public static class RuntimeFeature
public static bool IsSupported(string feature)
{
// No features are supported for now.
// These features should be added as public static readonly string fields in the same class.
// These features should be added as public const string fields in the same class.
// Example: public const string FeatureName = nameof(FeatureName);

return false;
}
}
Expand Down

0 comments on commit 392c18f

Please sign in to comment.