How-to-Learn-to-Code / rclass

Repository for the UNC-CH How to Learn to Code R Class
https://how-to-learn-to-code.github.io/rclass/
Other
2 stars 3 forks source link

Typo in operators vignette #49

Closed mbergins closed 5 years ago

mbergins commented 5 years ago

Noticed a typo in the operators vignette while we were working through it in class.

c <- 2^^4 - 12

should be

c <- 2^4 - 12

I'll make a pull request to fix.

mbergins commented 5 years ago

Fixed with a pull request merged into master