Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Correct a few a/an.
[simgrid.git] / examples / deprecated / java / dht / kademlia / Bucket.java
index 2fe2fc6..0abd098 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2012-2019. The SimGrid Team.
+/* Copyright (c) 2012-2020. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -44,7 +44,7 @@ public class Bucket {
     return nodes.get(id);
   }
 
-  /* Add the content of the bucket into a answer object. */
+  /* Add the content of the bucket into an answer object. */
   public void addToAnswer(Answer answer, int destination) {
     for (int nodeId : this.nodes) {
       answer.getNodes().add(new Contact(nodeId,nodeId ^ destination));