You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2021/12/20 04:40:39 UTC

[groovy] branch master updated: fix typo (legacy formatting)

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new 23aa83a  fix typo (legacy formatting)
23aa83a is described below

commit 23aa83af553ace74f445df4057811cfea542390e
Author: Paul King <pa...@asert.com.au>
AuthorDate: Mon Dec 20 14:40:32 2021 +1000

    fix typo (legacy formatting)
---
 src/main/java/org/codehaus/groovy/runtime/DefaultGroovyMethods.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/codehaus/groovy/runtime/DefaultGroovyMethods.java b/src/main/java/org/codehaus/groovy/runtime/DefaultGroovyMethods.java
index 610ac20..389074f 100644
--- a/src/main/java/org/codehaus/groovy/runtime/DefaultGroovyMethods.java
+++ b/src/main/java/org/codehaus/groovy/runtime/DefaultGroovyMethods.java
@@ -692,7 +692,7 @@ public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport {
      *
      * @param self any Object
      * @return a String that matches what would be typed into a terminal to
-     *         create this object. e.g. [1, 'hello'].inspect() {@code ->} [1, "hello"]
+     *         create this object. e.g. [1, 'hello'].inspect() {@code ->} [1, 'hello']
      * @since 1.0
      */
     public static String inspect(Object self) {