summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-04-04 19:21:35 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-04-07 08:04:31 +0200
commitb3910884561c146302565dddabdf0c20e637653c (patch)
tree6d964e7e19129b142efd0ceb6752e50736e5d804 /basic
parent421e6fc3cd2e6fe37afbef341e2d0ad7b8edde37 (diff)
Fix typo
Change-Id: I88a8fb94cb1e7653d63a77bdb63d1303cc848704 Reviewed-on: https://gerrit.libreoffice.org/70361 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'basic')
-rw-r--r--basic/source/comp/dim.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/comp/dim.cxx b/basic/source/comp/dim.cxx
index e209114aabf1..477acdcbefd5 100644
--- a/basic/source/comp/dim.cxx
+++ b/basic/source/comp/dim.cxx
@@ -73,7 +73,7 @@ SbiSymDef* SbiParser::VarDecl( SbiExprListPtr* ppDim, bool bStatic, bool bConst
return pDef;
}
-// Resolving of a AS-Type-Declaration
+// Resolving of an AS-Type-Declaration
// The data type were inserted into the handed over variable
void SbiParser::TypeDecl( SbiSymDef& rDef, bool bAsNewAlreadyParsed )
@@ -127,7 +127,7 @@ void SbiParser::TypeDecl( SbiSymDef& rDef, bool bAsNewAlreadyParsed )
}
}
break;
- case SYMBOL: // can only be a TYPE or a object class!
+ case SYMBOL: // can only be a TYPE or an object class!
if( eScanType != SbxVARIANT )
Error( ERRCODE_BASIC_SYNTAX );
else