I've frequently seen code like this in ERB templates:
<%= @some_variable %>
And seen code like this:
<%= node[:some_attribute][:some_other_attribute] %>
And just plain old
<%= some_variable %>
Is there a difference? Should I be concerned?