Skip to content

Commit

Permalink
Merge pull request #10338 from linstula/fix-computed-oneway
Browse files Browse the repository at this point in the history
Ensure computed.oneWay is exported properly.
  • Loading branch information
rwjblue committed Feb 2, 2015
2 parents 2956266 + 7d3e25e commit 4e7c648
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/ember-metal/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ import {
gte,
lt,
lte,
oneWay,
oneWay as computedOneWay,
readOnly,
defaultTo,
deprecatingAlias,
Expand All @@ -162,8 +162,8 @@ computed.gte = gte;
computed.lt = lt;
computed.lte = lte;
computed.alias = alias;
computed.oneWay = oneWay;
computed.reads = oneWay;
computed.oneWay = computedOneWay;
computed.reads = computedOneWay;
computed.readOnly = readOnly;
computed.defaultTo = defaultTo;
computed.deprecatingAlias = deprecatingAlias;
Expand Down

0 comments on commit 4e7c648

Please sign in to comment.