diff --git a/MatFileHandler/StringAdapter.cs b/MatFileHandler/StringAdapter.cs index 13cfa1d..afc5f80 100644 --- a/MatFileHandler/StringAdapter.cs +++ b/MatFileHandler/StringAdapter.cs @@ -1,14 +1,12 @@ // Copyright 2017-2018 Alexander Luzgarev using System; -using System.Linq; -using System.Numerics; using System.Text; namespace MatFileHandler { /// - /// A better interface for using datetime objects. + /// A better interface for using string objects. /// public class StringAdapter { @@ -18,7 +16,7 @@ namespace MatFileHandler /// /// Initializes a new instance of the class. /// - /// Source datetime object. + /// Source string object. public StringAdapter(IArray array) { var matObject = array as IMatObject; @@ -33,7 +31,7 @@ namespace MatFileHandler } /// - /// Gets datetime array dimensions. + /// Gets string array dimensions. /// public int[] Dimensions => dimensions;