From d08b07ea7a15ac2dcb40f70d1ed7d38b0ef5b7cc Mon Sep 17 00:00:00 2001
From: Maximilian Schnabel <maximilian.schnabel@rwth-aachen.de>
Date: Tue, 14 Jan 2020 14:09:16 +0100
Subject: [PATCH] adjusted doc formatting

---
 source/btBrickIO.m | 31 +++++++++++++++++--------------
 1 file changed, 17 insertions(+), 14 deletions(-)

diff --git a/source/btBrickIO.m b/source/btBrickIO.m
index 2e95547..161924b 100644
--- a/source/btBrickIO.m
+++ b/source/btBrickIO.m
@@ -27,14 +27,15 @@ classdef btBrickIO < BrickIO
     %        automatically chosen depending on the OS. Defaults to 'serial' on linux/mac
     %        systems, and to 'instrumentControl' on windows systems.
     %
+    % ::
     % 
-    % Examples:
-    %     % Connecting on windows |br|
-    %     commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1); % |br| 
-    %     % Connecting on windows using MATLABs default serial port implementation for testing |br|
-    %     commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1, 'backend', 'serial'); % |br|
-    %     % Connecting on mac/linux |br|
-    %     commHandle = btBrickIO('serPort', '/dev/rfcomm0'); % |br| 
+    %     Examples:
+    %         % Connecting on windows 
+    %         commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1);
+    %         % Connecting on windows using MATLABs default serial port implementation for testing 
+    %         commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1, 'backend', 'serial');
+    %         % Connecting on mac/linux
+    %         commHandle = btBrickIO('serPort', '/dev/rfcomm0');
     %
     
     properties
@@ -72,13 +73,15 @@ classdef btBrickIO < BrickIO
             %     varargin: Any number of property names as strings, each followed by the
             %         desired value. 
             % 
-            % Examples: 
-            %     % Connecting on windows
-            %     commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1); 
-            %     % Connecting on windows using MATLABs default serial port implementation for testing
-            %     commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1, 'backend', 'serial'); 
-            %     % Connecting on mac/linux 
-            %     commHandle = btBrickIO('serPort', '/dev/rfcomm0');
+            % ::
+            % 
+            %     Examples: 
+            %         % Connecting on windows
+            %         commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1); 
+            %         % Connecting on windows using MATLABs default serial port implementation for testing
+            %         commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1, 'backend', 'serial'); 
+            %         % Connecting on mac/linux 
+            %         commHandle = btBrickIO('serPort', '/dev/rfcomm0');
             %
             % See also BTBRICKIO.SETPROPERTIES
             
-- 
GitLab