Commit 62c4efa1 authored by Dave Hughes's avatar Dave Hughes

Fix typo in LazyField javadoc

"equals".equals("euqals") == false
parent d8b6452e
...@@ -39,14 +39,14 @@ import java.util.Map.Entry; ...@@ -39,14 +39,14 @@ import java.util.Map.Entry;
* *
* Most of key methods are implemented in {@link LazyFieldLite} but this class * Most of key methods are implemented in {@link LazyFieldLite} but this class
* can contain default instance of the message to provide {@code hashCode()}, * can contain default instance of the message to provide {@code hashCode()},
* {@code euqals()} and {@code toString()}. * {@code equals()} and {@code toString()}.
* *
* @author xiangl@google.com (Xiang Li) * @author xiangl@google.com (Xiang Li)
*/ */
public class LazyField extends LazyFieldLite { public class LazyField extends LazyFieldLite {
/** /**
* Carry a message's default instance which is used by {@code hashCode()}, {@code euqals()} and * Carry a message's default instance which is used by {@code hashCode()}, {@code equals()} and
* {@code toString()}. * {@code toString()}.
*/ */
private final MessageLite defaultInstance; private final MessageLite defaultInstance;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment