Skip to content

Commit b128c17

Browse files
committed
fix typos in documentation
1 parent 5e875ce commit b128c17

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

documentation/manual/releases/release1.0.x/releasenotes-1.0.1.textile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Now all dynamic expressions are escaped by the template engine to avoid XSS secu
1212

1313
bc. ${title} --> <h1>Title</h1>
1414

15-
If you really want to display it in an unescaped way, you need to explicitely call the @raw()@ method:
15+
If you really want to display it in an unescaped way, you need to explicitly call the @raw()@ method:
1616

1717
bc. ${title.raw()} --> <h1>Title</h1>
1818

@@ -119,7 +119,7 @@ bc. public class User {
119119

120120
h2. <a>Test runner update</a>
121121

122-
We’ve updated Selenium to the 1.0.1 final version and improved the UI. Selenium tests now run in fullscreen. And some new functionality like the "Run all tests" have been added.
122+
We’ve updated Selenium to the 1.0.1 final version and improved the UI. Selenium tests now run in full screen. And some new functionality like the "Run all tests" have been added.
123123

124124
!images/selenium-fullscreen!
125125

documentation/manual/releases/release1.0.x/releasenotes.textile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Now all dynamic expressions are escaped by the template engine to avoid XSS secu
1212

1313
bc. ${title} --> &lt;h1&gt;Title&lt;/h1&gt;
1414

15-
If you really want to display it in an unescaped way, you need to explicitely call the **raw()** method:
15+
If you really want to display it in an unescaped way, you need to explicitly call the **raw()** method:
1616

1717
bc. ${title.raw()} --> <h1>Title</h1>
1818

@@ -71,7 +71,7 @@ bc. public static void save(User user) {
7171
user.save(); // ok with 1.0.1
7272
}
7373

74-
Of course as this feature can break existing applications it is not enabled by default. You can enable it by adding the followin line to your **application.conf** file:
74+
Of course as this feature can break existing applications it is not enabled by default. You can enable it by adding the following line to your **application.conf** file:
7575

7676
bc. future.bindJPAObjects=true
7777

@@ -119,7 +119,7 @@ bc. public class User {
119119

120120
h2. <a>Test runner update</a>
121121

122-
We've updated selenium to the 1.0.1 final version and improved the UI. Selenium tests now run in fullscreen. And some new functionalities like the "Run all tests" have been added.
122+
We've updated selenium to the 1.0.1 final version and improved the UI. Selenium tests now run in full screen. And some new functionalities like the "Run all tests" have been added.
123123

124124
!images/selenium-fullscreen!
125125

documentation/manual/templates.textile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ All dynamic expressions are escaped by the template engine to avoid XSS security
8080

8181
bc. ${title} --> &lt;h1&gt;Title&lt;/h1&gt;
8282

83-
If you really want to display it in an unescaped way, you need to explicitely call the @raw()@ method:
83+
If you really want to display it in an unescaped way, you need to explicitly call the @raw()@ method:
8484

8585
bc. ${title.raw()} --> <h1>Title</h1>
8686

0 commit comments

Comments
 (0)