Skip to content

Commit

Permalink
typo....
Browse files Browse the repository at this point in the history
  • Loading branch information
jasnell committed Sep 26, 2012
1 parent b91f1c8 commit e3a7d88
Showing 1 changed file with 21 additions and 13 deletions.
34 changes: 21 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,11 @@ my_activity = activity {
#... set other properies ...

location {
altitude 10.0
longitude 128.23
latitude 95.0 # whoops! .. => ArgumentError
position {
altitude 10.0
longitude 128.23
latitude 95.0 # whoops! .. => ArgumentError
}
}

}
Expand All @@ -267,9 +269,11 @@ my_activity = activity {
#... set other properies ...

location {
altitude 10.0
longitude 128.23
latitude 95.0, LENIENT # OK!!
position {
altitude 10.0
longitude 128.23
latitude 95.0, LENIENT # OK!!
}
}

}
Expand All @@ -282,10 +286,12 @@ my_activity = activity {
#... set other properies ...

location {
lenient
altitude 10.0
longitude 128.23
latitude 95.0 # OK!!
position {
lenient
altitude 10.0
longitude 128.23
latitude 95.0 # OK!!
}
}

}
Expand All @@ -301,9 +307,11 @@ my_activity = activity {
#... set other properies ...
lenient
location {
altitude 10.0
longitude 128.23
latitude 95.0 # NOT OK!!! => ArgumentError
position {
altitude 10.0
longitude 128.23
latitude 95.0 # NOT OK!!! => ArgumentError
}
}

}
Expand Down

0 comments on commit e3a7d88

Please sign in to comment.