Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit b525cc8

Browse files
committed
Fixed bitshift typo
1 parent c8306d3 commit b525cc8

File tree

1 file changed

+1
-1
lines changed
  • src/site/_includes/language-tour/3-built-in-types

1 file changed

+1
-1
lines changed

src/site/_includes/language-tour/3-built-in-types/numbers.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
</p>
8383

8484
{% highlight dart %}
85-
assert((3 < 1) == 6); // 0011 << 1 == 0110
85+
assert((3 << 1) == 6); // 0011 << 1 == 0110
8686
assert((3 >> 1) == 1); // 0011 >> 1 == 0001
8787
assert((3 | 4) == 7); // 0011 | 0100 == 0111
8888
{% endhighlight %}

0 commit comments

Comments
 (0)