Minor documentation additions

This commit is contained in:
Nocturn9x 2022-03-14 18:31:01 +01:00
parent 36cced8ff1
commit e3eb0b0ff9
1 changed files with 5 additions and 1 deletions

View File

@ -11,11 +11,15 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
## A deque implemented on top of a doubly linked list
import strformat
type
DequeNode*[T] = ref object
DequeNode[T] = ref object
## Linked list node
next: DequeNode[T]
prev: DequeNode[T]
val: T