Skip to content

Commit

Permalink
Merge pull request #37 from guilhermesgb/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
jonfinerty committed Feb 7, 2018
2 parents 6420a54 + 58742b1 commit 8aa1d67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -45,7 +45,7 @@ if (!Once.beenDone(Once.THIS_APP_INSTALL, showAppTour)) {
}
```

Your app operations can also be rate-limited by time spans. So for example if you only want to phone back to your a maximum of server once per hour, you'd do the following:
Your app operations can also be rate-limited by time spans. So for example if you only want to phone back to your server a maximum of once per hour, you'd do the following:
```java
if (!Once.beenDone(TimeUnit.HOURS, 1, phonedHome) { ... }
```
Expand Down

0 comments on commit 8aa1d67

Please sign in to comment.