Skip to content

Commit

Permalink
fixes #330
Browse files Browse the repository at this point in the history
  • Loading branch information
rhijmans committed Feb 4, 2024
1 parent e97624e commit 0584e6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/writeStartStop.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ function(x, filename, options=NULL, format, prj=FALSE, ...) {
}

if (prj) {
crs <-.getCRS(x)
if (crs != "") {
writeLines(wkt(x), extension(filename, "prj") )
wk <- wkt(x)
if (wk != "") {
writeLines(wk extension(filename, "prj") )

This comment has been minimized.

Copy link
@kadyb

kadyb Feb 5, 2024

Contributor

@rhijmans, didn't you accidentally miss comma?

This comment has been minimized.

Copy link
@rhijmans

rhijmans Feb 5, 2024

Author Member

sure did!

}
}
return(x)
Expand Down

0 comments on commit 0584e6c

Please sign in to comment.