From 2c0ee37ebc4c69a3712f6f3bb1765a0c6cde85b9 Mon Sep 17 00:00:00 2001 From: Sylvain Arreckx <sylvain.arreckx@gmail.com> Date: Wed, 18 Jan 2017 00:04:52 +0100 Subject: [PATCH] change indentation and add a ; --- firstCommit/addTwoNumbers.m | 2 +- secondCommit/multiplyTwoNumbers.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/firstCommit/addTwoNumbers.m b/firstCommit/addTwoNumbers.m index 7cf857e..a2bda84 100644 --- a/firstCommit/addTwoNumbers.m +++ b/firstCommit/addTwoNumbers.m @@ -1,5 +1,5 @@ function c = addTwoNumbers(a, b) % addTwoNumbers(a, b) returns the sum of a and b -% c = a + b +% c = a + b; end diff --git a/secondCommit/multiplyTwoNumbers.m b/secondCommit/multiplyTwoNumbers.m index 81da38f..2431ab5 100644 --- a/secondCommit/multiplyTwoNumbers.m +++ b/secondCommit/multiplyTwoNumbers.m @@ -1,5 +1,5 @@ function c = multiplyTwoNumbers(a, b) % multiplyTwoNumbers(a, b) returns the product of a and b -% c = a * b +% c = a * b; end -- GitLab