lib/irb.rb in irb-1.3.8.pre.10 vs lib/irb.rb in irb-1.3.8.pre.11

- old
+ new

@@ -611,11 +611,11 @@ dst = String.new begin ret = conv.primitive_convert(str, dst) case ret when :invalid_byte_sequence - conv.insert_output(conf.primitive_errinfo[3].dump[1..-2]) + conv.insert_output(conv.primitive_errinfo[3].dump[1..-2]) redo when :undefined_conversion c = conv.primitive_errinfo[3].dup.force_encoding(conv.primitive_errinfo[1]) conv.insert_output(c.dump[1..-2]) redo @@ -865,10 +865,10 @@ # Try to parse the line and check if the last of possibly multiple # expressions is an assignment type. # If the expression is invalid, Ripper.sexp should return nil which will # result in false being returned. Any valid expression should return an - # s-expression where the second selement of the top level array is an + # s-expression where the second element of the top level array is an # array of parsed expressions. The first element of each expression is the # expression's type. verbose, $VERBOSE = $VERBOSE, nil result = ASSIGNMENT_NODE_TYPES.include?(Ripper.sexp(line)&.dig(1,-1,0)) $VERBOSE = verbose