Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
alchemistmatt committed Mar 7, 2020
1 parent 182ae28 commit 78590d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions C#_Version/DeconEngine/Readers/BrukerRawData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private int FindHeaderParams()
//fh = _open(marr_serName, _O_RDONLY | _O_BINARY );
//if (fh == ENOENT || fh == -1 )
//{
// // try using the fid extention instead of the .ser business.
// // try using the fid extension instead of the .ser business.
// int len = strlen(marr_serName);
// marr_serName[len-3] = 'f';
// marr_serName[len-2] = 'i';
Expand Down Expand Up @@ -463,7 +463,7 @@ private int GetNumSpectraFromFileSizeInfo()
var fName = marr_serName;
if (!File.Exists(fName))
{
// try using the fid extention instead of the .ser business.
// try using the fid extension instead of the .ser business.
fName = Path.ChangeExtension(fName, "fid");
}
using (var fh = new FileStream(fName, FileMode.Open, FileAccess.Read, FileShare.Read))
Expand Down

0 comments on commit 78590d6

Please sign in to comment.