Skip to content

Commit

Permalink
Fixed spelling error in JRuby Protobuf class
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Widmer authored and acozzette committed Dec 12, 2020
1 parent 351a34f commit 53be410
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -75,7 +75,7 @@ public static IRubyObject deepCopy(ThreadContext context, IRubyObject self, IRub
* unknown fields in submessages.
*/
@JRubyMethod(name = "discard_unknown", meta = true)
public static IRubyObject discardUnkown(ThreadContext context, IRubyObject self, IRubyObject message) {
public static IRubyObject discardUnknown(ThreadContext context, IRubyObject self, IRubyObject message) {
((RubyMessage) message).discardUnknownFields(context);
return context.nil;
}
Expand Down

0 comments on commit 53be410

Please sign in to comment.