From 5523a88acdf929b435698657d7d9fa31775ddd2b Mon Sep 17 00:00:00 2001 From: beqakd Date: Fri, 12 Jun 2020 13:53:55 +0400 Subject: [PATCH] repeated error fix --- sorting/gnome_sort.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/sorting/gnome_sort.cpp b/sorting/gnome_sort.cpp index 8f6378e9f..53049d303 100644 --- a/sorting/gnome_sort.cpp +++ b/sorting/gnome_sort.cpp @@ -7,9 +7,6 @@ #include // for io operations /** - * Copyright 2020 @author beqakd - * @file - * A basic implementation of gnome sort algorithm. * Gnome sort algorithm is not the best one. But it is used widely * it looks two elements prev one and next one. If they are on * right order it forwards, otherwise it swaps elements.