Skip to content

Commit

Permalink
README.md: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot committed Nov 5, 2020
1 parent f892349 commit e3e397f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
ObjectBox is a superfast object-oriented database with strong relation support.
ObjectBox is embedded into your Android, Linux, macOS, or Windows app.

**Latest version: [2.8.0 (2020/11/04)](https://docs.objectbox.io/#objectbox-changelog)**
**Latest version: [2.8.0 (2020/11/05)](https://docs.objectbox.io/#objectbox-changelog)**

Demo code using ObjectBox:

```java
Playlist playlist = new Playlist("My Favorties");
Playlist playlist = new Playlist("My Favorites");
playlist.songs.add(new Song("Lalala"));
playlist.songs.add(new Song("Lololo"));
box.put(playlist);
Expand All @@ -23,7 +23,7 @@ ObjectBox supports multiple platforms and languages.
Besides JVM based languages like Java and Kotlin, ObjectBox also offers:

* [ObjectBox Swift](https://github.com/objectbox/objectbox-swift): build fast mobile apps for iOS (and macOS)
* [ObjectBox Dart/Flutter](https://github.com/objectbox/objectbox-dart): cross-plattform for mobile and desktop apps (beta)
* [ObjectBox Dart/Flutter](https://github.com/objectbox/objectbox-dart): cross-platform for mobile and desktop apps (beta)
* [ObjectBox Go](https://github.com/objectbox/objectbox-go): great for data-driven tools and small server applications
* [ObjectBox C and C++](https://github.com/objectbox/objectbox-c): native speed with zero copy access to FlatBuffer objects

Expand Down

0 comments on commit e3e397f

Please sign in to comment.