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

Commit

Permalink
Fixing a reader-reported error and updating the screenshot.
Browse files Browse the repository at this point in the history
BUG=
R=gbracha@google.com

Review URL: https://codereview.appspot.com/88040047
  • Loading branch information
sfshaza2 committed Apr 15, 2014
1 parent 57bae00 commit 835eff2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified src/site/articles/optional-types/imgs/static-warning.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/site/articles/optional-types/index.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ class Point {
}

main() {
var p1 = new Point(0, 0);
var p2 = new Point(10, 10);
Point p1 = new Point(0, 0);
Point p2 = new Point(10, 10);

int n = p1 + p2;

Expand All @@ -111,7 +111,7 @@ The static checker will issue a warning in this case.



<img src="imgs/static-warning.png" width="665" height="363"
<img src="imgs/static-warning.png" width="744" height="435"
alt="Static warning in Dart Editor"
style="border: 1px solid gray; box-shadow: 5px 5px 5px rgba(50, 50, 50, 0.25);">

Expand Down

0 comments on commit 835eff2

Please sign in to comment.