From a57d81fefa0de680d526ca972f1bc51ea0e07a08 Mon Sep 17 00:00:00 2001
From: Laurent Heirendt <laurent.heirendt@uni.lu>
Date: Mon, 16 Jan 2017 16:28:30 +0100
Subject: [PATCH] Minor style changes

---
 firstCommit/addTwoNumbers.m       | 4 ++--
 secondCommit/multiplyTwoNumbers.m | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/firstCommit/addTwoNumbers.m b/firstCommit/addTwoNumbers.m
index 1283e79..7cf857e 100644
--- a/firstCommit/addTwoNumbers.m
+++ b/firstCommit/addTwoNumbers.m
@@ -1,5 +1,5 @@
-%% function addTwoNumbers(a, b) returns the sum of a and b
-
 function c = addTwoNumbers(a, b)
+% addTwoNumbers(a, b) returns the sum of a and b
+
 %    c = a + b
 end
diff --git a/secondCommit/multiplyTwoNumbers.m b/secondCommit/multiplyTwoNumbers.m
index 2d01284..81da38f 100644
--- a/secondCommit/multiplyTwoNumbers.m
+++ b/secondCommit/multiplyTwoNumbers.m
@@ -1,5 +1,5 @@
-%% function multiplyTwoNumbers(a, b) returns the product of a and b
-
 function c = multiplyTwoNumbers(a, b)
+% multiplyTwoNumbers(a, b) returns the product of a and b
+
 %    c = a * b
 end
-- 
GitLab