diff --git a/topics/basics/architectural_overview/psi_references.md b/topics/basics/architectural_overview/psi_references.md index 4f0a462f4..729e61fdf 100644 --- a/topics/basics/architectural_overview/psi_references.md +++ b/topics/basics/architectural_overview/psi_references.md @@ -11,7 +11,7 @@ For example, consider a simple Java method: ```java public void hello(String message) { - System.out.println(message); + System.out.println(message); } ``` @@ -45,7 +45,7 @@ In addition to references defined by the semantics of the programming language, Consider the following example: ```java -File f = new File("foo.txt"); +File file = new File("foo.txt"); ``` Here, "foo.txt" has no special meaning from the point of view of the Java syntax - it's just a string literal.