You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This a largely aesthetic change, though it might also simplify the code in places. E.g.,
> message("I said ", '"', "Hello world!", '"')
I said "Hello world!"
> message("I said ", sQuote("Hello world!"))
I said ‘Hello world!’
> message("I said ", dQuote("Hello world!"))
I said “Hello world!”
The text was updated successfully, but these errors were encountered:
This a largely aesthetic change, though it might also simplify the code in places. E.g.,
The text was updated successfully, but these errors were encountered: