Skip to content

Commit

Permalink
fix bug in logic lesson
Browse files Browse the repository at this point in the history
  • Loading branch information
ncarchedi committed Nov 2, 2014
1 parent 0e916a0 commit 2c2a9af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R_Programming/Logic/lesson.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
Output: "The function identical() will return TRUE if the two R objects passed to it as arguments
are identical. Try out the identical() function by typing: identical('twins', 'twins')"
CorrectAnswer: "identical('twins', 'twins')"
AnswerTests: omnitest(correctExpr='identical('twins', 'twins')')
AnswerTests: omnitest(correctExpr="identical('twins', 'twins')")
Hint: "If you want to see if two R objects are identical, type: identical('twins', 'twins')"

- Class: mult_question
Expand Down
2 changes: 1 addition & 1 deletion R_Programming_Alt/Logic/lesson.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
Output: "The function identical() will return TRUE if the two R objects passed to it as arguments
are identical. Try out the identical() function by typing: identical('twins', 'twins')"
CorrectAnswer: "identical('twins', 'twins')"
AnswerTests: omnitest(correctExpr='identical('twins', 'twins')')
AnswerTests: omnitest(correctExpr="identical('twins', 'twins')")
Hint: "If you want to see if two R objects are identical, type: identical('twins', 'twins')"

- Class: mult_question
Expand Down

0 comments on commit 2c2a9af

Please sign in to comment.