Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_1_378) is shown here.
strip_leading(size)
public
Strip off the leading margin
# File lib/rdoc/markup/lines.rb, line 74
def strip_leading(size)
if @text.size > size
@text[0,size] = ""
else
@text = ""
end
end