Skip to content

Commit

Permalink
fix bad paths in doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
robfitzgerald committed Sep 9, 2024
1 parent 4bb6529 commit ffe48a1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion us-census-acs/src/api/acs_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ fn validate_header(query: &AcsApiQueryParams, response: &serde_json::Value) -> R
/// for 2020.
///
/// ```rust
/// use us_census_acs::ops::acs_api::deserialize;
/// use us_census_acs::api::acs_api::deserialize;
/// use us_census_acs::model::acs_geoid_query::AcsGeoidQuery;
/// use us_census_core::model::identifier::fips;
/// use us_census_core::model::identifier::geoid::Geoid;
Expand Down
4 changes: 2 additions & 2 deletions us-census-acs/src/model/acs_api_query_params.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ impl AcsApiQueryParams {
///
/// ```rust
/// use us_census_core::model::identifier::{fips, geoid_type::GeoidType};
/// use us_census_core::model::acs::AcsType;
/// use us_census_acs::model::{
/// acs_geoid_query::AcsGeoidQuery,
/// acs_type::AcsType,
/// acs_api_query_params::AcsApiQueryParams
/// };
///
Expand All @@ -60,9 +60,9 @@ impl AcsApiQueryParams {
///
/// ```rust
/// use us_census_core::model::identifier::{fips, geoid_type::GeoidType, geoid::Geoid};
/// use us_census_core::model::acs::AcsType;
/// use us_census_acs::model::{
/// acs_geoid_query::AcsGeoidQuery,
/// acs_type::AcsType,
/// acs_api_query_params::AcsApiQueryParams
/// };
///
Expand Down
2 changes: 1 addition & 1 deletion us-census-acs/src/ops/acs_agg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use us_census_core::{
/// ```rust
/// use us_census_core::model::identifier::{Geoid, GeoidType, fips};
/// use us_census_core::ops::agg::NumericAggregation;
/// use us_census_acs::model::AcsValue;
/// use us_census_core::model::acs::AcsValue;
/// use us_census_acs::ops::acs_agg;
/// use serde_json::json;
///
Expand Down
2 changes: 1 addition & 1 deletion us-census-lehd/src/ops/lodes_agg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use us_census_core::{
/// ```rust
/// use us_census_core::model::identifier::{Geoid, GeoidType, fips};
/// use us_census_core::ops::agg::NumericAggregation;
/// use us_census_lehd::model::lodes::{WacSegment, WacValue};
/// use us_census_core::model::lodes::{WacSegment, WacValue};
/// use us_census_lehd::ops::lodes_agg;
///
/// // 2020 populations by county (WAC Segment C000) for two counties in Colorado.
Expand Down

0 comments on commit ffe48a1

Please sign in to comment.