Skip to content

Commit

Permalink
const -> var
Browse files Browse the repository at this point in the history
  • Loading branch information
acdlite committed Apr 7, 2017
1 parent 15b507c commit e191963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/prop-types/lib/ReactPropTypesSecret.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

'use strict';

const ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';

module.exports = ReactPropTypesSecret;

1 comment on commit e191963

@flarnie
Copy link
Contributor

Choose a reason for hiding this comment

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

Just noting for clarity - I think this change was in response to #9370

Please sign in to comment.