Skip to content

Commit

Permalink
fix typo related to BITPIX
Browse files Browse the repository at this point in the history
  • Loading branch information
kapadia committed Apr 2, 2015
1 parent 096f2a6 commit ee48fbc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/fits.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fits",
"version": "0.6.5",
"version": "0.6.6",
"author": "Amit Kapadia <[email protected]>",
"description": "Library for reading the FITS astronomical file format",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/header.verify.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ HeaderVerify =

BLANK: (args...) ->
value = arguments[0]
console.warn "BLANK is not to be used for BITPIX = #{@get('BITPIX')}" unless @get("BIXPIX") > 0
console.warn "BLANK is not to be used for BITPIX = #{@get('BITPIX')}" unless @get("BITPIX") > 0
return parseInt(value)

DATAMIN: (args...) ->
Expand Down

0 comments on commit ee48fbc

Please sign in to comment.