From f1f7f669c03a19e3c015b0ab6a9ac81b6e983e31 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 7 Sep 2017 04:34:56 +0000 Subject: [PATCH] spelling: javascript --- CHANGELOG.md | 2 +- lib/mixins/property-effects.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2841f72bca..c0f31250ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3520,7 +3520,7 @@ The following notable changes have been made since the 2.0 Preview announcement. - Polymer site appears broken on Safari 8 [\#719](https://github.com/Polymer/polymer/issues/719) -- Non ASCII strings set in Javascript show up as ? in Firefox [\#717](https://github.com/Polymer/polymer/issues/717) +- Non ASCII strings set in JavaScript show up as ? in Firefox [\#717](https://github.com/Polymer/polymer/issues/717) - Materials page in Polymer is not rendering correctly [\#716](https://github.com/Polymer/polymer/issues/716) diff --git a/lib/mixins/property-effects.html b/lib/mixins/property-effects.html index 3ed29d7f03..03324ee537 100644 --- a/lib/mixins/property-effects.html +++ b/lib/mixins/property-effects.html @@ -2140,7 +2140,7 @@ /** * Creates a multi-property "method observer" based on the provided - * expression, which should be a string in the form of a normal Javascript + * expression, which should be a string in the form of a normal JavaScript * function signature: `'methodName(arg1, [..., argn])'`. Each argument * should correspond to a property or path in the context of this * prototype (or instance), or may be a literal string or number. @@ -2199,7 +2199,7 @@ * Creates a computed property whose value is set to the result of the * method described by the given `expression` each time one or more * arguments to the method changes. The expression should be a string - * in the form of a normal Javascript function signature: + * in the form of a normal JavaScript function signature: * `'methodName(arg1, [..., argn])'` * * @param {string} property Name of computed property to set