Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Ruesga <[email protected]>
  • Loading branch information
jruesga committed Apr 7, 2019
1 parent b168e77 commit 93510a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1670,7 +1670,7 @@ public Observable<ServerVersion> getServerVersion() {
return andCacheVersion(SafeObservable.fromNullCallable(() -> {
ServerVersion version = mService.getServerVersion().blockingFirst();
if (version != null && version.isDevelopmentVersion()) {
return version.createDevelepmentVersion();
return version.createDevelopmentVersion();
}
return version;
}));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public boolean isDevelopmentVersion() {
return major == 0 && minor == 0;
}

public ServerVersion createDevelepmentVersion() {
public ServerVersion createDevelopmentVersion() {
return new ServerVersion(GerritApi.API_VERSION + "." + build);
}

Expand Down

0 comments on commit 93510a6

Please sign in to comment.