You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am just reading your Angular 2 course. I really enjoy it. I noticed you have an invalid syntax in your python example (modules chapter). Instead:
import foo from bar;
foo();
Should be:
from bar import foo
foo()
Thanks for great reading!
The text was updated successfully, but these errors were encountered:
Hi,
I am just reading your Angular 2 course. I really enjoy it. I noticed you have an invalid syntax in your python example (modules chapter). Instead:
Should be:
Thanks for great reading!
The text was updated successfully, but these errors were encountered: