From f6c07d771b35c9cf7f033f42bd743c73591c0aaf Mon Sep 17 00:00:00 2001 From: Nathanael Wong Date: Tue, 24 Sep 2024 21:10:21 -0400 Subject: [PATCH] Updates to docstrings --- docs/src/api/addreadrm.md | 6 +++--- docs/src/basics/properties/isin.md | 20 ++++++++++++++++---- 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/docs/src/api/addreadrm.md b/docs/src/api/addreadrm.md index 18c11805..c0718ef5 100644 --- a/docs/src/api/addreadrm.md +++ b/docs/src/api/addreadrm.md @@ -2,9 +2,9 @@ ```@docs GeoRegion( - geoID :: AbstractString; - path :: AbstractString = homedir() - ) -> geo :: GeoRegion + geoID :: AbstractString; + path :: AbstractString = homedir() +) ``` ```@docs diff --git a/docs/src/basics/properties/isin.md b/docs/src/basics/properties/isin.md index a9e1eeaa..0fa22118 100644 --- a/docs/src/basics/properties/isin.md +++ b/docs/src/basics/properties/isin.md @@ -126,9 +126,21 @@ And we see that this is indeed the case. ```@docs in( - Point :: Point2{<:Real}, - geo :: RectRegion; + :: Point2{<:Real}, + :: GeoRegion; + :: Real = 0, + :: Real = 0, + :: Bool = false +) +in( + :: GeoRegion, + :: RectRegion; + :: Bool = false +) +in( + cgeo :: GeoRegion, + geo :: Union{TiltRegion,PolyRegion}; + n :: Int = 100, + throw :: Bool = false ) -in(::GeoRegion,::RectRegion) -in(::GeoRegion,::PolyRegion) ``` \ No newline at end of file