Fix typos found by codespell

- Typos were found by codespell v1.17.0.dev0 (commit 44fea6d)
- Command used:
  codespell -q 2 \
  -L ba,bloc,blocs,doubleclick,dur,fille,frmat,numer,optin,passtime \
  -L pres,strack,te,tim,tre,uint,whn \
  --skip="*.de-DE.resx,./Bwg*,./Freedb,./MusicBrainz,./ProgressODoom" \
  --skip="./ThirdParty"
This commit is contained in:
Wolfgang Stöggl
2020-02-13 21:42:55 +01:00
parent 66b533c284
commit fe3cf97ef7
36 changed files with 91 additions and 91 deletions

View File

@@ -130,7 +130,7 @@ namespace CUETools.Codecs
return crc1;
}
public static unsafe ushort Substract(ushort crc1, ushort crc2, long len2)
public static unsafe ushort Subtract(ushort crc1, ushort crc2, long len2)
{
crc1 = Crc16.Reflect(crc1);
crc2 = Crc16.Reflect(crc2);

View File

@@ -228,7 +228,7 @@ namespace CUETools.Codecs
return crc1;
}
public static unsafe uint Substract(uint crc1, uint crc2, long len2)
public static unsafe uint Subtract(uint crc1, uint crc2, long len2)
{
/* degenerate case */
if (len2 == 0)