Skip to content

Commit

Permalink
Document these better
Browse files Browse the repository at this point in the history
  • Loading branch information
headius committed May 25, 2024
1 parent 544330c commit 638053e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/org/jruby/runtime/builtin/IRubyObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -365,12 +365,12 @@ default IRubyObject dup(ThreadContext context) {
void syncVariables(IRubyObject source);

/**
* @return a list of all variables (ivar/cvar/constant/internal)
* @return a list of all variables (ivar/internal)
*/
List<Variable<Object>> getVariableList();

/**
* @return a list of all marshalable variables (ivar/cvar/constant/internal)
* @return a mutable list of all marshalable variables (ivar/internal)
*/
default List<Variable<Object>> getMarshalVariableList() {
return getVariableList();
Expand Down

0 comments on commit 638053e

Please sign in to comment.