ResonantGeoData / RD-WATCH

RD-WATCH Documentation
https://resonantgeodata.github.io/RD-WATCH/
Apache License 2.0
6 stars 5 forks source link

Fix whitespace in string, bump max line length to a nice round number #488

Closed zachmullen closed 1 month ago

zachmullen commented 1 month ago

This is a very minor thing, but the previous string construction included all the white space from the second line, which is presumably not what was intended. A better way to handle strings that don't fit on one line is to use lexically adjacent literals:

(
    'This is the first line, '
    'and this is the second.'
)