Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
e20e2117
Commit
e20e2117
authored
Jul 05, 2015
by
Andrew Widdersheim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix 'paranthesis' typo to 'parenthesis'
This typo is most noticable in the Graphite lexer error hint message.
parent
a79c1cb2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
public/app/plugins/datasource/graphite/parser.js
+2
-2
public/test/specs/parser-specs.js
+2
-2
public/vendor/bootstrap/bootstrap.js
+1
-1
No files found.
public/app/plugins/datasource/graphite/parser.js
View file @
e20e2117
...
...
@@ -142,13 +142,13 @@ define([
name
:
this
.
consumeToken
().
value
,
};
// consume left par
a
nthesis
// consume left par
e
nthesis
this
.
consumeToken
();
node
.
params
=
this
.
functionParameters
();
if
(
!
this
.
match
(
')'
))
{
this
.
errorMark
(
'Expected closing par
a
nthesis'
);
this
.
errorMark
(
'Expected closing par
e
nthesis'
);
}
this
.
consumeToken
();
...
...
public/test/specs/parser-specs.js
View file @
e20e2117
...
...
@@ -118,11 +118,11 @@ define([
expect
(
rootNode
.
pos
).
to
.
be
(
19
);
});
it
(
'invalid function expression missing closing par
a
nthesis'
,
function
()
{
it
(
'invalid function expression missing closing par
e
nthesis'
,
function
()
{
var
parser
=
new
Parser
(
'sum(test'
);
var
rootNode
=
parser
.
getAst
();
expect
(
rootNode
.
message
).
to
.
be
(
'Expected closing par
a
nthesis instead found end of string'
);
expect
(
rootNode
.
message
).
to
.
be
(
'Expected closing par
e
nthesis instead found end of string'
);
expect
(
rootNode
.
pos
).
to
.
be
(
9
);
});
...
...
public/vendor/bootstrap/bootstrap.js
View file @
e20e2117
...
...
@@ -2069,7 +2069,7 @@
,
move
:
function
(
e
)
{
if
(
!
this
.
shown
)
return
// grafana change, shift+left par
a
nthesis
// grafana change, shift+left par
e
nthesis
if
(
e
.
shiftKey
&&
e
.
keyCode
===
40
)
{
return
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment