[w3c/FileAPI] Rename EndingTypes to EndingType or EndingsType (#91)

Sorry, missed this during the review.

The `EndingTypes` enum is named with a plural which doesn't make sense when used in the dictionary:
```webidl
dictionary BlobPropertyBag {
  DOMString type = "";
  EndingTypes endings = "transparent";
};
```
There's only one _type_ so the property type shouldn't be _types_. 

Either `EndingType` or `EndingsType` makes more sense.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/FileAPI/issues/91

Received on Friday, 1 December 2017 16:49:37 UTC