Skip to content

Commit

Permalink
Merge pull request swirldev#66 from cazzerson/master
Browse files Browse the repository at this point in the history
Remove unnecessarily escaped apostrophe
  • Loading branch information
ncarchedi committed Nov 16, 2014
2 parents 653b571 + e9a30ff commit b176835
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@
Output: The size variable represents the download size in bytes, which are units of computer memory. These days, megabytes (MB) are a more common unit of measurement. One megabyte is equal to 2^20 bytes. That's 2 to the power of 20, which is approximately one million bytes!

- Class: cmd_question
Output: "We want to add a column called size_mb that contains the download size in megabytes. Here''s the code to do it:\n\nmutate(cran3, size_mb = size / 2^20)"
Output: "We want to add a column called size_mb that contains the download size in megabytes. Here's the code to do it:\n\nmutate(cran3, size_mb = size / 2^20)"
CorrectAnswer: mutate(cran3, size_mb = size / 2^20)
AnswerTests: omnitest('mutate(cran3, size_mb = size / 2^20)')
Hint: mutate(cran3, size_mb = size / 2^20) will add a new column called size_mb that contains the download size in megabytes.
Expand Down

0 comments on commit b176835

Please sign in to comment.