Skip to content
Closed
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
2 changes: 1 addition & 1 deletion docs/Animations.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ There are some cases where an animated value needs to invert another animated va
An example is inverting a scale (2x --> 0.5x):

```javascript
const a = Animated.Value(1);
const a = new Animated.Value(1);
const b = Animated.divide(1, a);

Animated.spring(a, {
Expand Down