From eaf81fd3f7a0b28517ff11b8b643ec2e125c5bb9 Mon Sep 17 00:00:00 2001 From: terakilobyte Date: Fri, 24 Apr 2015 16:04:25 -0400 Subject: [PATCH] Closes #333 --- seed_data/bonfires.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/seed_data/bonfires.json b/seed_data/bonfires.json index d3207d38f9..24d2813064 100644 --- a/seed_data/bonfires.json +++ b/seed_data/bonfires.json @@ -644,7 +644,8 @@ "difficulty": "3.12", "description": [ "Fill in the object constructor with the methods specified in the tests.", - "Those methods are getFirstName(), getLastName(), getFullName(), setFirstName(), setLastName(), and setFullName().", + "Those methods are getFirstName(), getLastName(), getFullName(), setFirstName(first), setLastName(last), and setFullName(firstAndLast).", + "All functions that take an argument have an arity of 1, and the argument will be a string.", "These methods must be the only available means for interacting with the object." ], "challengeSeed": "var Person = function(firstAndLast) {\n return firstAndLast;\r\n};\n\nvar bob = new Person('Bob Ross');\nbob.getFullName();",