Updates referencesource to .NET 4.7
[mono.git] / mcs / class / referencesource / System.Activities / System / Activities / WorkflowApplication.cs
index ff9b74d7295d3a52cf91057ee647d184edec0c5e..952c17975ba5a0c0d5e525db02d26f5ee47de911 100644 (file)
@@ -367,7 +367,7 @@ namespace System.Activities
 
                 try
                 {
-                    // The "false" is to notify that we are not still [....]
+                    // The "false" is to notify that we are not still sync
                     done = data.NextCallback(result, thisPtr, false);
                 }
                 catch (Exception e)
@@ -1100,7 +1100,7 @@ namespace System.Activities
             TerminateAsyncResult.End(result);
         }
 
-        // called from the [....] and async paths
+        // called from the sync and async paths
         void CancelCore()
         {
             // We only actually do any work if we haven't completed and we aren't
@@ -3867,7 +3867,7 @@ namespace System.Activities
                 if (this.instance.HasPersistenceProvider && this.instance.persistenceManager.OwnerWasCreated &&
                     (this.operation == PersistenceOperation.Unload || this.operation == PersistenceOperation.Complete))
                 {
-                    // This call uses the ambient transaction directly if there was one, to mimic the [....] case.
+                    // This call uses the ambient transaction directly if there was one, to mimic the sync case.
                     // 
                     IAsyncResult deleteOwnerResult = null;
                     using (PrepareTransactionalCall(this.dependentTransaction))