Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Commit

Permalink
Merge pull request #56 from tomykaira/fix_spell_miss
Browse files Browse the repository at this point in the history
Fix spell miss
  • Loading branch information
Keita Fujii committed Apr 2, 2012
2 parents 45eaf61 + 5d00d3d commit 87e67c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/twitter-text-conformance
Submodule twitter-text-conformance updated from 25a1e7 to e9cf44
2 changes: 1 addition & 1 deletion twitter-text.js
Expand Up @@ -663,7 +663,7 @@ if (typeof twttr === "undefined" || twttr === null) {
* (Presence of listSlug indicates a list)
*/
twttr.txt.extractMentionsOrListsWithIndices = function(text) {
if (!text || !text.match(twttr.txt.regexen.atSign)) {
if (!text || !text.match(twttr.txt.regexen.atSigns)) {
return [];
}

Expand Down

0 comments on commit 87e67c8

Please sign in to comment.