Skip to content

Commit

Permalink
Fix [TreatNullAs] usage in example (#360)
Browse files Browse the repository at this point in the history
This was not corrected as part of #286.
  • Loading branch information
domenic authored and tobie committed May 10, 2017
1 parent 8e43020 commit 4dbd7d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -9586,7 +9586,7 @@ See [[#es-DOMString]] for the specific requirements that the use of [{{TreatNull
<pre highlight="webidl">
interface Dog {
attribute DOMString name;
[TreatNullAs=EmptyString] attribute DOMString owner;
attribute [TreatNullAs=EmptyString] DOMString owner;

boolean isMemberOfBreed([TreatNullAs=EmptyString] DOMString breedName);
};
Expand Down

0 comments on commit 4dbd7d2

Please sign in to comment.