Skip to content

Commit 14ec6ba

Browse files
committed
Change version.
1 parent 89ef09d commit 14ec6ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

builtin/constants.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var constants = types.ConstantMap{
1515
"true": true,
1616
"false": false,
1717
"help": "Type in the expression you want to calc and press Enter to get the result.\n\tTo define a variable type its name and assign the value with '=' operator.\n\tType 'funcs()' to see all available functions.\n\tType 'vars()' to see all available variables.",
18-
"version": "1.5.0",
18+
"version": "1.5.1",
1919
}
2020

2121
// Is constant with name presented in the builtin constant map.

user/functions.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func SetFunction(name string, function Func) {
3232
functions[name] = function
3333
}
3434

35-
// Set function varian for the funtion with given name.
35+
// Set function varian for the function with given name.
3636
func SetFunctionVariant(name string, variant FuncVariant) {
3737
var currentFunc Func
3838

0 commit comments

Comments
 (0)