Skip to content

Commit

Permalink
📝 Fix typo in item name
Browse files Browse the repository at this point in the history
  • Loading branch information
NONONOexe committed Sep 1, 2024
1 parent c1454e4 commit 57a5f28
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions R/extract-road-endpoints.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
#' @return A points object representing road endpoints. Each endpoint
#' has the following columns:
#' \itemize{
#' \item origins: A list of road IDs that intersect at the endpoint.
#' \item n.overlaps: The number of roads that intersect at the endpoint.
#' \item parent_road: A list of road IDs that intersect at the endpoint.
#' \item num_overlaps: The number of roads that intersect at the endpoint.
#' }
#' @export
extract_road_endpoints <- function(roads) {
Expand Down
5 changes: 3 additions & 2 deletions R/extract-road-intersections.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
#' a column named `layer` and a column named `road_id`.
#' @return A data frame with the following columns:
#' \itemize{
#' \item origins: A list of road IDs that intersect at the intersection.
#' \item n.overlaps: The number of roads that intersect at the intersection.
#' \item parent_road: A list of road IDs that intersect at the intersection.
#' \item num_overlaps: The number of roads that intersect at the
#' intersection.
#' }
#' @export
extract_road_intersections <- function(roads) {
Expand Down
4 changes: 2 additions & 2 deletions man/extract_road_endpoints.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions man/extract_road_intersections.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 57a5f28

Please sign in to comment.