solid / solid-spec

Solid specification draft 0.7.0
Creative Commons Zero v1.0 Universal
1.13k stars 103 forks source link

Fix typo in "Solid HTTPS REST API Spec" #231

Open Potherca opened 4 years ago

Potherca commented 4 years ago

When reading through the specs for the Solid REST-API, I noticed that the section regarding "WAC-Allow headers" contains a typo.

As this typo is not resolved in either #103 nor #148, I felt it best to bring it to your attention.

The offending sentence is:

`user="` + user-permissions = `",public="` + public-permissions + `"`

Unless I am mistaken, given the context, the equals-sign = after user-permissions should be a plus +:

`user="` + user-permissions + `",public="` + public-permissions + `"`

This MR fixes that.