From 0aaf53f9e66506a1cd2917d711cb9f9a2a0bfed7 Mon Sep 17 00:00:00 2001 From: Karol Lewandowski Date: Wed, 18 Oct 2023 16:31:52 +0200 Subject: [PATCH] psi_references.md: Code snippets cleanup --- topics/basics/architectural_overview/psi_references.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.