From 9aa7c352c0cdbc16edaf7ff743a0c27ddaa08c80 Mon Sep 17 00:00:00 2001 From: Ben Ashford Date: Sat, 29 Aug 2015 17:37:05 +0100 Subject: [PATCH] Fix potentially confusing typo --- .../2015-05-24-rust-traits-for-developer-friendly-libraries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2015-05-24-rust-traits-for-developer-friendly-libraries.md b/_posts/2015-05-24-rust-traits-for-developer-friendly-libraries.md index 1b40c4e..e186234 100644 --- a/_posts/2015-05-24-rust-traits-for-developer-friendly-libraries.md +++ b/_posts/2015-05-24-rust-traits-for-developer-friendly-libraries.md @@ -110,7 +110,7 @@ Filter::build_geo_bounding_box("pin") .build(); -This is because the tuple `((f64, f64), (f64, f64))` implements `Into`. Similar provisions are made for `(f64, f64, f64, f64)` for the `Vertices` version, and for `(String, String)` for the geohash version. This is achieved by simply implementing the `From for Location` trait for each required combination: +This is because the tuple `((f64, f64), (f64, f64))` implements `Into`. Similar provisions are made for `(f64, f64, f64, f64)` for the `Vertices` version, and for `(String, String)` for the geohash version. This is achieved by simply implementing the `From for Geobox` trait for each required combination:
 impl From<(f64, f64, f64, f64)> for GeoBox {