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 2017/01/26 05:31:22 UTC

[48/50] groovy git commit: Fixing broken bold style (closes #474)

Fixing broken bold style (closes #474)


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/922439bd
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/922439bd
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/922439bd

Branch: refs/heads/GROOVY_2_4_X
Commit: 922439bd91e438dc643ea53d968caf78aa6b1289
Parents: 303f4d6
Author: Aleksei <eg...@gmail.com>
Authored: Mon Jan 2 05:52:54 2017 +0300
Committer: John Wagenleitner <jw...@apache.org>
Committed: Sun Jan 22 12:02:11 2017 -0800

----------------------------------------------------------------------
 src/spec/doc/core-operators.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/922439bd/src/spec/doc/core-operators.adoc
----------------------------------------------------------------------
diff --git a/src/spec/doc/core-operators.adoc b/src/spec/doc/core-operators.adoc
index 7794454..31f409d 100644
--- a/src/spec/doc/core-operators.adoc
+++ b/src/spec/doc/core-operators.adoc
@@ -514,7 +514,7 @@ The position of the spread map operator is relevant, like illustrated in the fol
 include::{projectdir}/src/spec/test/OperatorsTest.groovy[tags=spread_map_position,indent=0]
 ----
 <1> `m1` is the map that we want to inline
-<2> we use the `*:m1` notation to spread the contents of `m1` into `map`, but redefine the key `d` *after* spreading
+<2> we use the `*:m1` notation to spread the contents of `m1` into `map`, but redefine the key `d` **after** spreading
 <3> `map` contains all the expected keys, but `d` was redefined
 
 === Range operator