[SYNCOPE-1106] Updating docs

Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/8ff366f2
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/8ff366f2
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/8ff366f2

Branch: refs/heads/master
Commit: 8ff366f27aa62ed986938229179cc837e3647f9d
Parents: fc8a30b
Author: Francesco Chicchiriccò <ilgro...@apache.org>
Authored: Mon Jun 12 17:46:45 2017 +0200
Committer: Francesco Chicchiriccò <ilgro...@apache.org>
Committed: Mon Jun 12 17:50:44 2017 +0200

----------------------------------------------------------------------
 .../asciidoc/reference-guide/concepts/notifications.adoc     | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/8ff366f2/src/main/asciidoc/reference-guide/concepts/notifications.adoc
----------------------------------------------------------------------
diff --git a/src/main/asciidoc/reference-guide/concepts/notifications.adoc 
b/src/main/asciidoc/reference-guide/concepts/notifications.adoc
index f508cb0..149f590 100644
--- a/src/main/asciidoc/reference-guide/concepts/notifications.adoc
+++ b/src/main/asciidoc/reference-guide/concepts/notifications.adoc
@@ -125,11 +125,11 @@ with actual value matching the _about_ condition as 
introduced above, can be use
 ====
 [source]
 ----
-Hi ${user.plainAttrMap["firstname"].values[0]} 
${user.plainAttrMap["surname"].values[0]},
+Hi ${user.getPlainAttr("firstname").values[0]} 
${user.getPlainAttr("surname").values[0]},
   welcome to Syncope!
 
 Your username is ${user.username}.
-Your email address is ${user.plainAttrMap["email"].values[0]}.
+Your email address is ${user.getPlainAttr("email").values[0]}.
 
 Best regards.
 ----
@@ -141,10 +141,10 @@ Best regards.
 ----
 <html>
   <body>
-    <h3>Hi ${user.plainAttrMap["firstname"].values[0]} 
${user.plainAttrMap["surname"].values[0]},
+    <h3>Hi ${user.getPlainAttr("firstname").values[0]} 
${user.getPlainAttr("surname").values[0]},
       welcome to Syncope!</h3>
     <p>Your username is ${user.username}.<br/>
-    Your email address is ${user.plainAttrMap["email"].values[0]}.</p>
+    Your email address is ${user.getPlainAttr("email").values[0]}.</p>
     <p>Best regards.</p>
   </body>
 </html>

Reply via email to