Skip to content

Commit 25738e0

Browse files
Vasil ChimevVasil Chimev
authored andcommitted
Fix typos.
1 parent 0185e8d commit 25738e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/services/doctor-service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ class DoctorService implements IDoctorService {
6868
if(!sysInfo.gradleVer) {
6969
this.$logger.warn("WARNING: Gradle is not installed or is not configured properly.");
7070
this.$logger.out("You will not be able to build your projects for Android or run them in the emulator or on a connected device." + EOL
71-
+ "To be able to build for Android and run apps in the emulator on on a connected device, verify that you have installed Gradle.");
71+
+ "To be able to build for Android and run apps in the emulator or on a connected device, verify that you have installed Gradle.");
7272
}
7373

7474
if(sysInfo.gradleVer && helpers.versionCompare(sysInfo.gradleVer, DoctorService.MIN_SUPPORTED_GRADLE_VERSION) === -1) {
7575
this.$logger.warn(`WARNING: Gradle version is lower than ${DoctorService.MIN_SUPPORTED_GRADLE_VERSION}.`);
7676
this.$logger.out("You will not be able to build your projects for Android or run them in the emulator or on a connected device." + EOL
77-
+ `To be able to build for Android and run apps in the emulator on on a connected device, verify thqt you have at least ${DoctorService.MIN_SUPPORTED_GRADLE_VERSION} version installed.`);
77+
+ `To be able to build for Android and run apps in the emulator or on a connected device, verify thqt you have at least ${DoctorService.MIN_SUPPORTED_GRADLE_VERSION} version installed.`);
7878
}
7979

8080
if(!sysInfo.javacVersion) {

0 commit comments

Comments
 (0)