Skip to content

Commit

Permalink
adjust contributing
Browse files Browse the repository at this point in the history
  • Loading branch information
tbal999 committed Sep 19, 2022
1 parent 68dea73 commit f6d3217
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributing to blues/jsonata-go
# Contributing to blues/jsonata-go [xiatechs fork]

We love pull requests from everyone. By participating in this project, you
agree to abide by the Blues Inc [code of conduct].
Expand All @@ -18,7 +18,7 @@ clean up inconsistent whitespace )
* by closing [issues][]
* by reviewing patches

[issues]: https://github.com/blues/jsonata-go/issues
[issues]: https://github.com/xiatechs/jsonata-go/issues

## Submitting an Issue

Expand Down Expand Up @@ -55,7 +55,7 @@ clean up inconsistent whitespace )
* If you don't know how to add tests, please put in a PR and leave a comment asking for help.
We love helping!

[repo]: https://github.com/blues/jsonata-go/tree/master
[repo]: https://github.com/xiatechs/jsonata-go/tree/master
[fork]: https://help.github.com/articles/fork-a-repo/
[branch]:
https://help.github.com/articles/creating-and-deleting-branches-within-your-repository/
Expand Down
2 changes: 1 addition & 1 deletion env.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ var baseEnv = initBaseEnv(map[string]Extension{
UndefinedHandler: defaultUndefinedHandler,
EvalContextHandler: defaultContextHandler,
},

/*
EXTENDED END
*/
Expand Down
2 changes: 1 addition & 1 deletion eval.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import (
"reflect"
"sort"

"github.com/shopspring/decimal"
"github.com/xiatechs/jsonata-go/config"
"github.com/xiatechs/jsonata-go/jlib"
"github.com/xiatechs/jsonata-go/jparse"
"github.com/xiatechs/jsonata-go/jtypes"
"github.com/shopspring/decimal"
)

var undefined reflect.Value
Expand Down
2 changes: 1 addition & 1 deletion jlib/aggregate.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"fmt"
"reflect"

"github.com/shopspring/decimal"
"github.com/xiatechs/jsonata-go/config"
"github.com/xiatechs/jsonata-go/jtypes"
"github.com/shopspring/decimal"
)

// Sum returns the total of an array of numbers. If the array is
Expand Down
4 changes: 2 additions & 2 deletions jlib/unescape.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package jlib

import (
"fmt"
"encoding/json"
"fmt"
)

// Unescape an escaped json string into JSON (once)
Expand All @@ -15,4 +15,4 @@ func Unescape(input string) (interface{}, error) {
}

return output, nil
}
}
4 changes: 2 additions & 2 deletions jsonata.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ package jsonata
import (
"encoding/json"
"fmt"
"regexp"
"reflect"
"regexp"
"sync"
"time"
"unicode"
Expand Down Expand Up @@ -382,7 +382,7 @@ func isDigit(r rune) bool {
return (r >= '0' && r <= '9') || unicode.IsDigit(r)
}

/*
/*
enables:
- comments in jsonata code
- fields with any character in their name
Expand Down

0 comments on commit f6d3217

Please sign in to comment.