diff --git a/DESCRIPTION b/DESCRIPTION
index d22e712ef951e09354bbd93dd9658f156e0d91ce..237f55a0da0c707265160378d374a009efc02c6f 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,16 +1,13 @@
 Name: jsonlab
 Version: 2.0.0
 Date: 2020-06-13
-
 Title: A JSON/UBJSON/MessagePack encoder/decoder for MATLAB/Octave
 Author: Qianqian Fang <fangqq@gmail.com>
 Maintainer: Qianqian Fang <fangqq@gmail.com>
-
 Description:  JSONLab is a free and open-source implementation of a JSON/UBJSON/MessagePack 
  encoder and a decoder in the native MATLAB language. It can be used to convert 
  a MATLAB data structure (array, struct, cell, struct array and cell array) into
  JSON/UBJSON formatted string, or decode a JSON/UBJSON/MessagePack file into 
  MATLAB data. JSONLab supports both MATLAB and GNU Octave (a free MATLAB clone).
-
 URL: http://openjdata.org/jsonlab
 Categories: JSON
diff --git a/encodevarname.m b/encodevarname.m
index a8815e130c0a0e4ffef261b117c1910fc8024be8..62385afb3e7f2f756ccb123098113b91294adc74 100644
--- a/encodevarname.m
+++ b/encodevarname.m
@@ -60,4 +60,4 @@ function str = encodevarname(str,varargin)
             str=[str str0(pos0(end-1)+1:pos0(end))];
         end
     end
-end
\ No newline at end of file
+end
diff --git a/gzipdecode.m b/gzipdecode.m
index 905da6ba70412ac02881e034a786393e00830f19..57bb60a679387e7a6f2e372d29973a15939376ed 100644
--- a/gzipdecode.m
+++ b/gzipdecode.m
@@ -66,4 +66,4 @@ if(nargout>0)
 	varargout{1}=typecast(varargout{1},inputinfo.type);
 	varargout{1}=reshape(varargout{1},inputinfo.size);
     end
-end
\ No newline at end of file
+end
diff --git a/jload.m b/jload.m
index fba169d9c1cdae3a8bb478f6495fad3dfd081614..8475d58fb79391f1b5d42774810613dc8687ee6c 100644
--- a/jload.m
+++ b/jload.m
@@ -105,4 +105,4 @@ else
     if(nargout>1)
         varargout{2}=header;
     end
-end
\ No newline at end of file
+end
diff --git a/loadubjson.m b/loadubjson.m
index c9497ef2de47da098cf82cd27ad48aedc73093b3..e57ef2537b2911e9d87ce5e14fb3a981d9bc02db 100644
--- a/loadubjson.m
+++ b/loadubjson.m
@@ -36,4 +36,4 @@ function varargout = loadubjson(varargin)
 % -- this function is part of JSONLab toolbox (http://iso2mesh.sf.net/cgi-bin/index.cgi?jsonlab)
 %
 
-[varargout{1:nargout}]=loadbj(varargin{:});
\ No newline at end of file
+[varargout{1:nargout}]=loadbj(varargin{:});
diff --git a/nestbracket2dim.m b/nestbracket2dim.m
index 77c69f784c262ba9e7b2ea75d60078f63e584426..d1a19bf7c5c4e3ee164aa87044af5b8e57125306 100644
--- a/nestbracket2dim.m
+++ b/nestbracket2dim.m
@@ -50,4 +50,4 @@ maxlevel=max(count);
 dims=histc(count,1:maxlevel);
 dims(1:end-1)=dims(1:end-1)*0.5;
 dims(2:end)=dims(2:end)./dims(1:end-1);
-dims=fliplr(dims);
\ No newline at end of file
+dims=fliplr(dims);
diff --git a/savemsgpack.m b/savemsgpack.m
index fd5823fef5afffcc5671d14d4fbc37bd7edab3c3..1cad0b214362e157029c831579f924bc00603c24 100644
--- a/savemsgpack.m
+++ b/savemsgpack.m
@@ -28,4 +28,4 @@ elseif(length(varargin)==1 && ischar(varargin{1}))
     msgpk=savebj(rootname,obj,'FileName',varargin{1},'MessagePack',1);
 else
     msgpk=savebj(rootname,obj,varargin{:},'MessagePack',1);
-end
\ No newline at end of file
+end
diff --git a/zlibdecode.m b/zlibdecode.m
index 2566d8826e1f71414a3e5aa46034dbb15676e7a5..cc1749836f97b61873d61f610b05db6b44d4c594 100644
--- a/zlibdecode.m
+++ b/zlibdecode.m
@@ -67,4 +67,4 @@ if(nargout>0)
 	varargout{1}=typecast(varargout{1},inputinfo.type);
 	varargout{1}=reshape(varargout{1},inputinfo.size);
     end
-end
\ No newline at end of file
+end