summaryrefslogtreecommitdiff
path: root/scripting/examples/beanshell/Capitalise/capitalise.bsh
diff options
context:
space:
mode:
Diffstat (limited to 'scripting/examples/beanshell/Capitalise/capitalise.bsh')
-rw-r--r--scripting/examples/beanshell/Capitalise/capitalise.bsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripting/examples/beanshell/Capitalise/capitalise.bsh b/scripting/examples/beanshell/Capitalise/capitalise.bsh
index 206a84910ee6..6b68e010f29f 100644
--- a/scripting/examples/beanshell/Capitalise/capitalise.bsh
+++ b/scripting/examples/beanshell/Capitalise/capitalise.bsh
@@ -63,7 +63,7 @@ void capitalise() {
UnoRuntime.queryInterface(XText.class, xTextRange.getText());
xWordCursor = (XWordCursor)
UnoRuntime.queryInterface(XWordCursor.class, xText.createTextCursorByRange(xTextRange));
- // move the Word cursor to the start of the word if its not
+ // move the Word cursor to the start of the word if it's not
// already there
if(!xWordCursor.isStartOfWord()) {
xWordCursor.gotoStartOfWord(false);