From c09fcdda036c90983510e1b15d22f257929bc5ac Mon Sep 17 00:00:00 2001 From: Sophia Schröder Date: Sun, 22 Apr 2018 18:46:44 +0100 Subject: Punctuation and whitespace fixes in help text. Change-Id: Id719352c06bc525d7c52d88683b0f5ff3beb729f Reviewed-on: https://gerrit.libreoffice.org/53295 Tested-by: Jenkins Reviewed-by: Olivier Hallot --- source/text/sbasic/shared/03030107.xhp | 2 +- source/text/sbasic/shared/03090409.xhp | 4 ++-- source/text/sbasic/shared/03101110.xhp | 2 +- source/text/sbasic/shared/03140008.xhp | 4 ++-- source/text/sbasic/shared/03140012.xhp | 4 ++-- source/text/sbasic/shared/keys.xhp | 12 ++++++------ 6 files changed, 14 insertions(+), 14 deletions(-) (limited to 'source/text/sbasic') diff --git a/source/text/sbasic/shared/03030107.xhp b/source/text/sbasic/shared/03030107.xhp index 8b6df1cb7d..947b738f97 100644 --- a/source/text/sbasic/shared/03030107.xhp +++ b/source/text/sbasic/shared/03030107.xhp @@ -35,7 +35,7 @@ CDateToIso Function Returns the date in ISO format without separators (YYYYMMDD) from a serial date number that is generated by the DateSerial or the DateValue or the CDateFromIso function. The year part consists of at least four digits, with leading zeros if the absolute value is less than 1000, it can be negative with a leading minus sign if the date passed denotes a year before the common era (BCE) and it can have more than four digits if the absolute value is greater than 9999. The formatted string returned can be in the range "-327680101" to "327671231". -Years less than 100 and greater than 9999 are supported since %PRODUCTNAME 5.4 +Years less than 100 and greater than 9999 are supported since %PRODUCTNAME 5.4. Syntax: diff --git a/source/text/sbasic/shared/03090409.xhp b/source/text/sbasic/shared/03090409.xhp index eb98a3fcdd..08348414d4 100644 --- a/source/text/sbasic/shared/03090409.xhp +++ b/source/text/sbasic/shared/03090409.xhp @@ -46,8 +46,8 @@ Parameters: - Name: Name of the subroutine . - VarName: Parameter that you want to pass to the subroutine. + Name: Name of the subroutine. + VarName: Parameter that you want to pass to the subroutine. Type: Type-declaration key word. Example: diff --git a/source/text/sbasic/shared/03101110.xhp b/source/text/sbasic/shared/03101110.xhp index 29116c0392..811225a306 100644 --- a/source/text/sbasic/shared/03101110.xhp +++ b/source/text/sbasic/shared/03101110.xhp @@ -44,7 +44,7 @@ DefCur c Sub ExampleDefCur - cCur=Currency ' cCur is an implicit currency variable + cCur=Currency ' cCur is an implicit currency variable. End Sub diff --git a/source/text/sbasic/shared/03140008.xhp b/source/text/sbasic/shared/03140008.xhp index 542b4583e6..c9694aa3e9 100644 --- a/source/text/sbasic/shared/03140008.xhp +++ b/source/text/sbasic/shared/03140008.xhp @@ -66,10 +66,10 @@ Dim ppMth5 As Double ' Principal payment during month 4: ppMth4 = PPmt( 0.1/12, 4, 72, 100000 ) -print ppMth4 ' ppMth4 is calculated to be -1044,94463903636 +print ppMth4 ' ppMth4 is calculated to be -1044,94463903636. ' Principal payment during month 5: ppMth5 = PPmt( 0.1/12, 5, 72, 100000 ) -print ppMth5' ppMth5 is calculated to be -1053,65251102833 +print ppMth5' ppMth5 is calculated to be -1053,65251102833. End Sub diff --git a/source/text/sbasic/shared/03140012.xhp b/source/text/sbasic/shared/03140012.xhp index 0b1533d324..9ad42e26b7 100644 --- a/source/text/sbasic/shared/03140012.xhp +++ b/source/text/sbasic/shared/03140012.xhp @@ -47,7 +47,7 @@ Cost is the initial cost of an asset. Salvage is the value of an asset at the end of the depreciation. -Life is the depreciation period determining the number of periods in the depreciation of the asset. +Life is the depreciation period determining the number of periods in the depreciation of the asset. Period is the period number for which you want to calculate the depreciation. @@ -59,7 +59,7 @@ REM Calculate the yearly depreciation of an asset that cost $10,000 at REM the start of year 1, and has a salvage value of $1,000 after 5 years. Dim syd_yr1 As Double -REM Calculate the depreciation during year 1 +REM Calculate the depreciation during year 1. syd_yr1 = SYD( 10000, 1000, 5, 1 ) print syd_yr1 ' syd_yr1 is now equal to 3000. End Sub diff --git a/source/text/sbasic/shared/keys.xhp b/source/text/sbasic/shared/keys.xhp index 56d8498c61..5dfef6e6c6 100644 --- a/source/text/sbasic/shared/keys.xhp +++ b/source/text/sbasic/shared/keys.xhp @@ -18,7 +18,7 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . --> - + @@ -49,7 +49,7 @@ -Run code starting from the first line, or from the current breakpoint, if the program stopped there before +Run code starting from the first line, or from the current breakpoint, if the program stopped there before. F5 @@ -65,7 +65,7 @@ -Add watch for the variable at the cursor +Add watch for the variable at the cursor. F7 @@ -81,7 +81,7 @@ -Single step as with F8, but a function call is considered to be only one statement +Single step as with F8, but a function call is considered to be only one statement. Shift+F8 @@ -89,7 +89,7 @@ -Set or remove a breakpoint at the current line or all breakpoints in the current selection +Set or remove a breakpoint at the current line or all breakpoints in the current selection. F9 @@ -97,7 +97,7 @@ -Enable/disable the breakpoint at the current line or all breakpoints in the current selection +Enable/disable the breakpoint at the current line or all breakpoints in the current selection. Shift+F9 -- cgit