Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / examples / deprecated / java / async / waitall / Main.java
index 5e1a27c..10830f7 100644 (file)
@@ -1,18 +1,18 @@
-/* Copyright (c) 2006-2019. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2006-2022. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 package async.waitall;
 
-/** This example demonstrates the use of the asynchrounous communications
- * 
+/** This example demonstrates the use of the asynchronous communications
+ *
  *  Task.isend() and Task.irecv() are used to start the communications in non-blocking mode.
- *  
- *  The sends are then blocked onto with Comm.waitCompletion(), that locks until the given 
+ *
+ *  The sends are then blocked onto with Comm.waitCompletion(), that locks until the given
  *  communication terminates.
- *  
- *  The receives are packed into an array, and the sender blocks until all of them terminate 
+ *
+ *  The receives are packed into an array, and the sender blocks until all of them terminate
  *  with Comm.waitAll().
  */