solid-spec icon indicating copy to clipboard operation
solid-spec copied to clipboard

Fix typo in "Solid HTTPS REST API Spec"

Open Potherca opened this issue 5 years ago • 0 comments

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.

Potherca avatar Oct 02 '20 12:10 Potherca