Skip to content

Commit

Permalink
Merge pull request #485 from YuukiToriyama/feature/fix-parsed-address…
Browse files Browse the repository at this point in the history
…/fix-typo

ParsedAddressの修正: Typoを修正
  • Loading branch information
YuukiToriyama authored Oct 29, 2024
2 parents a482e99 + f43d6a2 commit 527bbe3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/src/domain/common/latlng.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
pub struct LatLng {
/// 緯度
pub(crate) latitude: f64,
/// 軽度
/// 経度
pub(crate) longitude: f64,
}
4 changes: 2 additions & 2 deletions core/src/experimental/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ pub struct Metadata {
/// 住所のパースに成功し、緯度経度の情報が取得できる場合、緯度を返します。
/// 緯度経度の情報はあくまで検出できた地域の代表点を表すものであり、入力された住所の実際の位置とは必ずしも一致しないことに注意してください。
pub latitude: Option<f64>,
/// 軽度
/// 経度
///
/// 住所のパースに成功し、緯度経度の情報が取得できる場合、軽度を返します
/// 住所のパースに成功し、緯度経度の情報が取得できる場合、経度を返します
/// 緯度経度の情報はあくまで検出できた地域の代表点を表すものであり、入力された住所の実際の位置とは必ずしも一致しないことに注意してください。
pub longitude: Option<f64>,
/// パース処理の深度
Expand Down

0 comments on commit 527bbe3

Please sign in to comment.