Skip to content

Commit e33ff0c

Browse files
committed
fix docs
1 parent dc17a63 commit e33ff0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/boundingboxes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ All other methods funnel into that one, defaulting to the same `N, T` that the g
2323
GeometryBasics allows the user given dimension `N` to be smaller or equal to that of the geometry.
2424
This is checked with `GeometryBasics.bbox_dim_check(user_dim, geom_dim)` which you may reuse.
2525

26-
```@example
26+
```julia
2727
function Rect{N, T}(a::HyperSphere{N2}) where {N, N2, T}
28-
bbox_dim_check(N, N2)
28+
GeometryBasics.bbox_dim_check(N, N2)
2929
return Rect{N, T}(minimum(a), widths(a))
3030
end
3131
```

0 commit comments

Comments
 (0)