diff options
author | Stefan Schmidt <s.schmidt@samsung.com> | 2019-12-17 11:33:45 -0300 |
---|---|---|
committer | Lauro Moura <lauromoura@expertisesolutions.com.br> | 2019-12-17 11:33:45 -0300 |
commit | 7855a97f0d1cb0c1caac0180ae3a6a91e627ad06 (patch) | |
tree | f8fbac884fc35d79a402d3f3db3e5f3418b710fc | |
parent | b6521cc279cda9a9a1591a30c4f63220e196b3af (diff) |
examples: js: fix variable name
Summary:
Simple mispell in the example.
Depends on D10882
Reported-By: https://lgtm.com/projects/g/Enlightenment/efl
Reviewers: felipealmeida, lauromoura
Reviewed By: felipealmeida
Subscribers: cedric, #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D10883
-rw-r--r-- | src/examples/elementary/icon_example_01.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/examples/elementary/icon_example_01.js b/src/examples/elementary/icon_example_01.js index 21d78f1de7..828805313b 100644 --- a/src/examples/elementary/icon_example_01.js +++ b/src/examples/elementary/icon_example_01.js | |||
@@ -12,7 +12,7 @@ icon.setIcon("home"); | |||
12 | var path, group; | 12 | var path, group; |
13 | r = icon.getFile(path, group); | 13 | r = icon.getFile(path, group); |
14 | path = r[0]; | 14 | path = r[0]; |
15 | gruop = r[1]; | 15 | group = r[1]; |
16 | console.log("path = " + path + ", group = " + group); | 16 | console.log("path = " + path + ", group = " + group); |
17 | 17 | ||
18 | var name; | 18 | var name; |