From bc4082180e91e94ee8888ff5f927117df4f22078 Mon Sep 17 00:00:00 2001 From: Antonino Porcino Date: Sun, 19 Jul 2015 11:37:57 +0200 Subject: [PATCH] Fixed small typo on PRIMER.md --- PRIMER.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PRIMER.md b/PRIMER.md index 493437ca5a..188d0a7420 100644 --- a/PRIMER.md +++ b/PRIMER.md @@ -348,7 +348,7 @@ Note: Deserialization occurs both at create time, as well as at runtime, e.g. wh ## Static attributes on host -If a custom elements needs HTML attributes set on it at create-time, these may be declared in a `hostAttributes` property on the prototype, where keys are the attribtue name and values are the values to be assigned. Values should typically be provided as strings, as HTML attributes can only be strings; however, the standard `serialize` method is used to convert values to strings, so `true` will serialize to an empty attribute, and `false` will result in no attribtue set, and so forth (see [here](#attribute-serialization) for more details). +If a custom elements needs HTML attributes set on it at create-time, these may be declared in a `hostAttributes` property on the prototype, where keys are the attribute name and values are the values to be assigned. Values should typically be provided as strings, as HTML attributes can only be strings; however, the standard `serialize` method is used to convert values to strings, so `true` will serialize to an empty attribute, and `false` will result in no attribute set, and so forth (see [here](#attribute-serialization) for more details). Example: