From 98a2e31aa9476789246c8ae680b4679936566ff5 Mon Sep 17 00:00:00 2001 From: Ki Rill Date: Mon, 23 Dec 2019 16:26:23 +0600 Subject: [PATCH] Update main.d --- lesson#7/main.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lesson#7/main.d b/lesson#7/main.d index 291e207..ba3abf5 100644 --- a/lesson#7/main.d +++ b/lesson#7/main.d @@ -1,4 +1,4 @@ -// Creating Tic Tac Toe (Noughts and Crosses) game +// Creating Tic Tac Toe (Noughts and Crosses) game (check ticTacToe.d) // LET'S LEARN: passing a variable by value and by reference import std.stdio: writeln; @@ -27,10 +27,10 @@ void modify(int argument) { */ // passing by reference -// when passing by reference, a fucntion copies the reference to the variable, and when modifying +// when passing by reference, a function copies the reference to the variable, and when modifying // the argument of a function, changes the actual value of the original variable void modify(ref int argument) { argument = 70; writeln("Step 2: argument(num) = ", argument); -} \ No newline at end of file +}