Skip to content

Commit d554c54

Browse files
committed
Document Base implementations.
1 parent decc73d commit d554c54

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/src/guides/defaults.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ GeoInterface is implemented automatically for `NTuple`s, `NamedTuple`s and `Vect
5151

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

5656
b = (1,2,3)
57-
x(b) == 2
57+
GeoInterface.y(b) == 2
5858

59-
c = (;X=1, Y=2)
60-
x(c) == 1
59+
c = (;X=1, Y=2, Z=3)
60+
GeoInterface.z(c) == 3
6161
```

0 commit comments

Comments
 (0)