aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/cgeo/geocaching/ICache.java6
-rw-r--r--src/cgeo/geocaching/cgCache.java2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/cgeo/geocaching/ICache.java b/src/cgeo/geocaching/ICache.java
index 8a49cf5..c91b959 100644
--- a/src/cgeo/geocaching/ICache.java
+++ b/src/cgeo/geocaching/ICache.java
@@ -40,9 +40,9 @@ public interface ICache {
*/
public Float getTerrain();
/**
- * @return Latitute, e.g. N 52° 12.345
+ * @return Latitude, e.g. N 52° 12.345
*/
- public String getLatitute();
+ public String getLatitude();
/**
* @return Longitude, e.g. E 9° 34.567
*/
@@ -68,7 +68,7 @@ public interface ICache {
*/
public String getHint();
/**
- * @return Descrition
+ * @return Description
*/
public String getDescription();
/**
diff --git a/src/cgeo/geocaching/cgCache.java b/src/cgeo/geocaching/cgCache.java
index ee885da..dfa5029 100644
--- a/src/cgeo/geocaching/cgCache.java
+++ b/src/cgeo/geocaching/cgCache.java
@@ -402,7 +402,7 @@ public class cgCache implements ICache {
}
@Override
- public String getLatitute() {
+ public String getLatitude() {
return latitudeString;
}