Programming Ruby 3.2 (5th Edition): possible missing # (p. 35)

@noelrappin

On page 35 in the paragraph following the demonstration of how puts handles an object without a to_s method, the last sentence describes the output as wrapped in <…>, but for the sake of completeness shouldn’t it be wrapped in #<…>?

The text reads:
“It puts the whole lot inside <…>.”

Proposed correction:
“It puts the whole lot inside #<…>.”

Good point, thanks!