mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-06-30 02:03:42 -07:00
e64fb6795c
Remove byte-order-marker pre-commit check as there would be many adjustments necessary
8 lines
201 B
C#
8 lines
201 B
C#
namespace SuperStarTrek
|
|
{
|
|
internal static class StringExtensions
|
|
{
|
|
internal static string Pluralize(this string singular, int quantity) => singular + (quantity > 1 ? "s" : "");
|
|
}
|
|
}
|