diff options
author | aclement <aclement> | 2008-08-20 19:31:42 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-08-20 19:31:42 +0000 |
commit | 6d906dc563e78f9a4a21bc61f27ca406b065a6b8 (patch) | |
tree | 189608483f7fc969a864b7500c7dcfa26aa6c162 /docs | |
parent | 9e8236201e7e67f5add224e61c915bab82eb4273 (diff) | |
download | aspectj-6d906dc563e78f9a4a21bc61f27ca406b065a6b8.tar.gz aspectj-6d906dc563e78f9a4a21bc61f27ca406b065a6b8.zip |
216067
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dist/doc/examples/introduction/Point.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/dist/doc/examples/introduction/Point.java b/docs/dist/doc/examples/introduction/Point.java index 609a0488c..4de01359b 100644 --- a/docs/dist/doc/examples/introduction/Point.java +++ b/docs/dist/doc/examples/introduction/Point.java @@ -74,9 +74,9 @@ public class Point { protected void makeRectangular(){ if (!rectangular) { - x = rho * Math.sin(theta); - y = rho * Math.cos(theta); - rectangular = true; + y = rho * Math.sin(theta); + x = rho * Math.cos(theta); + rectangular = true; } } |