Skip to content

Commit

Permalink
Fixes #209 - Update README to reflect byte[] as return types (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Apr 19, 2024
1 parent df14fe4 commit c275fe2
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 @@ -44,15 +44,15 @@ Key-Value Store would look like the code below.
The example below illustrates how to store a value.

```java
store.put("mykey", "myvalue");
store.put("mykey", "myvalue".getBytes());
```

### Getting a value

The example below illustrates how to store a value.
The example below illustrates how to get a value.

```java
String value = store.get("mykey");
String value = new String(store.get("mykey"));
```

### Deleting a value
Expand Down

0 comments on commit c275fe2

Please sign in to comment.