Skip to content

Commit a26a8fa

Browse files
committed
docs
1 parent 5bea8d2 commit a26a8fa

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

DESCRIPTION

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Encoding: UTF-8
1515
LazyData: true
1616
Depends: R (>= 4.0.0)
1717
LinkingTo:
18-
geometries,
18+
geometries (>= 0.2.5),
1919
jsonify (>= 1.2.3),
2020
rapidjsonr (>= 1.2.1),
2121
Rcpp,
@@ -25,7 +25,6 @@ Imports:
2525
RoxygenNote: 7.3.3
2626
Suggests:
2727
covr,
28-
jsonify (>= 1.2.3),
2928
knitr,
3029
rmarkdown,
3130
tinytest

inst/include/geojsonsf/geojson/geojson_properties.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ namespace geojson_properties {
5353

5454
// allow NULL through so the type is correct when back in R
5555
// Treat "True" and "False" as the same type (logical)
56-
bool both_logical = (existing_type == "True" || existing_type == "False") &&
56+
bool both_logical = (existing_type == "True" || existing_type == "False") &&
5757
(type == "True" || type == "False");
58-
58+
5959
if (!both_logical) {
6060
// if it's different, update to be a 'String'
6161
property_types[property] = "String";

0 commit comments

Comments
 (0)