[Libreoffice-commits] core.git: cli_ure/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Sun Apr 14 17:43:01 UTC 2019


 cli_ure/source/climaker/climaker_emit.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 62f021814875dab64ecfc4b068f2c3b369c0987d
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sun Apr 14 17:22:00 2019 +0000
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sun Apr 14 19:42:21 2019 +0200

    Fix typo
    
    Change-Id: I3f4a60a977c20b2e5d380fe9dd26d80a20099c05
    Reviewed-on: https://gerrit.libreoffice.org/70741
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/cli_ure/source/climaker/climaker_emit.cxx b/cli_ure/source/climaker/climaker_emit.cxx
index 7ce1d9f71c82..a2c77c026a72 100644
--- a/cli_ure/source/climaker/climaker_emit.cxx
+++ b/cli_ure/source/climaker/climaker_emit.cxx
@@ -1450,7 +1450,7 @@ Assembly ^ TypeEmitter::type_resolve(
 //          arAny[2] = new Any(c.Type, c.Value);
 //          return (XWeak) factory.createInstanceWithArgumentsAndContext("service_specifier", arAny, ctx);
 //      }
-// Notice that a any parameter is NOT wrapped by another any. Instead the new any is created with the type and value
+// Notice that an any parameter is NOT wrapped by another any. Instead the new any is created with the type and value
 // of the parameter.
 
 //      public static XWeak constructor3(XComponentContext ctx, params Any[] c)
@@ -1853,7 +1853,7 @@ Assembly ^ TypeEmitter::type_resolve(
         }
 
 
-        //Check if the service instance was create and throw a exception if not.
+        //Check if the service instance was created and threw an exception if not
         Emit::Label label_service_created = ilGen->DefineLabel();
         ilGen->Emit(Emit::OpCodes::Ldloc, local_return_val);
         ilGen->Emit(Emit::OpCodes::Brtrue_S, label_service_created);
@@ -2010,7 +2010,7 @@ Emit::CustomAttributeBuilder^ TypeEmitter::get_exception_attribute(
           ::uno::Any::typeid->GetMethod("hasValue");
     ilGen->Emit(Emit::OpCodes::Call, methodHasValue);
 
-    //If not, then throw an DeploymentException
+    //If not, then throw a DeploymentException
     Emit::Label label_singleton_exists = ilGen->DefineLabel();
     ilGen->Emit(Emit::OpCodes::Brtrue_S, label_singleton_exists);
     sBuilder = gcnew ::System::Text::StringBuilder(


More information about the Libreoffice-commits mailing list