Skip to content

Commit

Permalink
Fix links in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jmikola committed Apr 1, 2022
1 parent 4773b91 commit 4b10235
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This library implements the

The library is published as a
[package](https://packagist.org/packages/jmikola/geojson) and is installable via
[Composer](http://getcomposer.org/):
[Composer](https://getcomposer.org/):

```
$ composer require "jmikola/geojson=^1.0"
Expand Down
6 changes: 3 additions & 3 deletions USAGE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# GeoJson PHP Library

This library implements the
[GeoJSON format specification](http://www.geojson.org/geojson-spec.html).
[GeoJSON format specification](https://geojson.org/).

The `GeoJson` namespace includes classes for each data structure defined in the
GeoJSON specification. Core GeoJSON objects include geometries, features, and
Expand All @@ -12,7 +12,7 @@ Classes also exist for bounding boxes and coordinate reference systems.

The library is published as a
[package](https://packagist.org/packages/jmikola/geojson) and is installable via
[Composer](http://getcomposer.org/):
[Composer](https://getcomposer.org/):

```
$ composer require "jmikola/geojson=^1.0"
Expand Down Expand Up @@ -63,7 +63,7 @@ $feature = new \GeoJson\Feature\Feature(null, null, null, $box);
### JSON Serialization

Each class in the library implements the
[JsonSerializable](http://php.net/manual/en/class.jsonserializable.php)
[JsonSerializable](https://php.net/manual/en/class.jsonserializable.php)
interface, which allows objects to be passed directly to `json_encode()`.

```php
Expand Down

0 comments on commit 4b10235

Please sign in to comment.