Skip to content

Commit e1b3d9b

Browse files
authored
Update defaults.md
1 parent 2e4a2aa commit e1b3d9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/guides/defaults.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ npoint(::HexagonTrait, geom) = 6
5050
GeoInterface is implemented for `NTuple`s, `NamedTuple`s and `AbstractVector`s to behave as Points. Note the `eltype` in all cases should be a `Real`. Only the keys `X`, `Y`, `Z`, and `M` are supported for `NamedTuple`s.
5151

5252
```julia
53-
a = [1,2,3]
53+
a = [1, 2, 3]
5454
GeoInterface.x(a) == 1
5555

56-
b = (1,2,3)
56+
b = (1, 2, 3)
5757
GeoInterface.y(b) == 2
5858

5959
c = (;X=1, Y=2, Z=3)

0 commit comments

Comments
 (0)