Skip to content

Commit 11ac8ec

Browse files
authored
Update README.md
1 parent 342819b commit 11ac8ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class Test{
5454
Scanner scanner = new Scanner(System.in);
5555
String s = scanner.next(); //The synchronization happens in a new Thread. This main thread is free to receive commands. Use your standard input to enter the command 'end' to end the synchronization. This will end all synchronization activities safely.
5656

57-
if(s.equals("end"){
57+
if(s.equals("end")){
5858
dbAgent.stopSync(); //Call this method to stop the synchronization safely.
5959
dbAgent.disconnect(); //Call this method after the stopSync() method has been called. Do not call this method without calling the stopSync() method.
6060
}

0 commit comments

Comments
 (0)