From 12e8cd6313b86559bafd94d904406ce56cb1a3d0 Mon Sep 17 00:00:00 2001 From: "Steven G. Harms" Date: Mon, 26 Aug 2019 20:52:23 -0400 Subject: [PATCH] Formatting --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e40765d..880cd1e 100644 --- a/README.md +++ b/README.md @@ -17,18 +17,18 @@ You'll be coding your methods in `lib/introduction.rb`. ## Define a Method That Takes in and Uses an Argument -Define a method, `#introduction` that takes in the argument `name` and outputs +Define a method called `introduction` that takes in the argument `name` and outputs the phrase: `"Hi, my name is #{name}."` ## Define a Method That Takes and Uses Two Arguments -Define a method, `#introduction_with_language` that takes in two arguments, -`name` and `language` and outputs the phrase: "Hi, my name is #{name} and I am -learning to program in #{language}." +Define a method called `introduction_with_language` that takes in two arguments, +`name` and `language` and outputs the phrase: `"Hi, my name is #{name} and I am +learning to program in #{language}."` ## Define a Method With an Optional Argument -Copy the previous method and name it `#introduction_with_language_optional`. It +Copy the previous method and name it `introduction_with_language_optional`. It takes in two arguments, `name` and `language`, but the second argument is optional. The default value for `language` will be "Ruby".