Просмотр исходного кода

Merge pull request #1478 from zxdvd/dev

fix typo of by
Evan You 10 лет назад
Родитель
Сommit
c050ae5993
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/util/dom.js

+ 1 - 1
src/util/dom.js

@@ -26,7 +26,7 @@ exports.query = function (el) {
  * Check if a node is in the document.
  * Check if a node is in the document.
  * Note: document.documentElement.contains should work here
  * Note: document.documentElement.contains should work here
  * but always returns false for comment nodes in phantomjs,
  * but always returns false for comment nodes in phantomjs,
- * making unit tests difficult. This is fixed byy doing the
+ * making unit tests difficult. This is fixed by doing the
  * contains() check on the node's parentNode instead of
  * contains() check on the node's parentNode instead of
  * the node itself.
  * the node itself.
  *
  *