Skip to content
This repository was archived by the owner on Jun 8, 2023. It is now read-only.

Commit 170bc9a

Browse files
Merge pull request #1290 from cheeaun/master
Fix whatis.coffee not working
2 parents ef50eee + 18ca775 commit 170bc9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scripts/whatis.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module.exports = (robot) ->
3333
$ = require('jquery').create(window)
3434

3535
definitions = []
36-
$(".definition").each (idx, item) ->
36+
$(".meaning").each (idx, item) ->
3737
definitions.push $(item).text()
3838

3939
msgText = if definitions.length==0 then "No definition found." else (msg.random definitions)

0 commit comments

Comments
 (0)