mirror of
https://github.com/aaru-dps/Aaru.Decoders.git
synced 2025-12-16 19:24:32 +00:00
Fix typos and add new words to dictionary.
This commit is contained in:
@@ -32,12 +32,15 @@
|
||||
|
||||
namespace Aaru.Decoders.MMC;
|
||||
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
/// <summary>Decodes MultiMediaCard vendors</summary>
|
||||
public static class VendorString
|
||||
{
|
||||
/// <summary>Converts the byte value of a MultiMediaCard vendor ID to the manufacturer's name string</summary>
|
||||
/// <param name="mmcVendorId">MMC vendor ID</param>
|
||||
/// <returns>Manufacturer</returns>
|
||||
[SuppressMessage("ReSharper", "StringLiteralTypo")]
|
||||
public static string Prettify(byte mmcVendorId) => mmcVendorId switch
|
||||
{
|
||||
0x07 => "Nokia",
|
||||
|
||||
Reference in New Issue
Block a user