Skip to content

Commit 466bed6

Browse files
committed
Update
1 parent aad68d0 commit 466bed6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

_pages/en/docs/architecture/activity-environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ One of the major features of `ActivityEnvironment` is that property values can b
7272
<item name="file.upload-path" value="#{bean:uploadPath.path}/uploads"/>
7373

7474
<!-- References the 'userId' parameter of the current translet -->
75-
<item name="user.home.dir" value="/home/#(param:userId)"/>
75+
<item name="user.home.dir" value="/home/${userId}"/>
7676
</properties>
7777
```
7878

_pages/en/docs/architecture/aspectran-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ The most common use case is passing the result of an Action as a model to a view
101101
```xml
102102
<translet name="/user/detail">
103103
<action id="userInfo" bean="userDao" method="getUser">
104-
<argument name="id">#(param:userId)</argument>
104+
<argument name="id">${userId}</argument>
105105
</action>
106106
<response>
107107
<dispatch name="user/detail.peb"/>

_pages/ko/docs/architecture/activity-environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ subheadline: 아키텍처
7272
<item name="file.upload-path" value="#{bean:uploadPath.path}/uploads"/>
7373

7474
<!-- 현재 트랜슬릿의 'userId' 파라미터 값을 참조 -->
75-
<item name="user.home.dir" value="/home/#(param:userId)"/>
75+
<item name="user.home.dir" value="/home/${userId}"/>
7676
</properties>
7777
```
7878

_pages/ko/docs/architecture/aspectran-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Action의 처리 결과 값은 다음과 같은 다양한 시나리오에서 핵
101101
```xml
102102
<translet name="/user/detail">
103103
<action id="userInfo" bean="userDao" method="getUser">
104-
<argument name="id">#(param:userId)</argument>
104+
<argument name="id">${userId}</argument>
105105
</action>
106106
<response>
107107
<dispatch name="user/detail.peb"/>

0 commit comments

Comments
 (0)