You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2017/01/13 15:58:21 UTC

[08/22] 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/d32a39b1
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/d32a39b1
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/d32a39b1

Branch: refs/heads/parrot
Commit: d32a39b1845653b357d9ff60673169d18e68dd16
Parents: 9ae8607
Author: Aleksei <eg...@gmail.com>
Authored: Mon Jan 2 05:52:54 2017 +0300
Committer: John Wagenleitner <jw...@apache.org>
Committed: Thu Jan 5 20:51:34 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/d32a39b1/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