Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix argmin example title in readme file + fix travis build for node version 0.12 #16

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,3 @@ node_js:
- 0.12
- 4
- 5

before_install:
- npm install npm@latest -g
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The travis build for node v0.12 was failing until I removed this. There was an error message saying that the latest version of npm doesn't support node v0.12

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ if(any(array)) {
}
```

## Compute the index of the maximum element of an array:
## Compute the index of the minimum element of an array:
```javascript
var argmin = cwise({
args: ["index", "array"],
Expand Down