Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
fixed typo
  • Loading branch information
CarlosCarrera authored Jul 23, 2017
1 parent c770a80 commit d80ed7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
an object into memory so that it can be recreated at a later time while still keeping the
objects original state and data. In Java there are two methods of doing this, one is by
implementing Serializable or Parcelable. In Android, however, Serializable should never be used
in Android. Parcelable was created to be more efficient then Serializable, and performs about
in Android. Parcelable was created to be more efficient than Serializable, and performs about
10x faster then Serializable because Serializable uses reflection which is a slow process and
tends to create a lot of temporary objects which may cause garbage collection to occur more often.
* What is Singleton class?
Expand Down

0 comments on commit d80ed7a

Please sign in to comment.