documentation: remove author field [ci skip]

This commit is contained in:
narimiran
2019-01-17 07:15:40 +01:00
parent 2039dad273
commit 52a54f5f04
4 changed files with 0 additions and 9 deletions

View File

@@ -7,8 +7,6 @@
# distribution, for details about the copyright.
#
## :Author: Alexander Mitchell-Robinson (Amrykid) and Nim contributors
##
## Although this module has ``seq`` in its name, it implements operations
## not only for `seq`:idx: type, but for three built-in container types under
## the ``openArray`` umbrella:

View File

@@ -7,8 +7,6 @@
# distribution, for details about the copyright.
#
## :Author: Nim contributors
##
## The ``tables`` module implements variants of an efficient `hash table`:idx:
## (also often named `dictionary`:idx: in other programming languages) that is
## a mapping from keys to values.

View File

@@ -7,8 +7,6 @@
# distribution, for details about the copyright.
#
## :Author: Nim contributors
##
## *Constructive mathematics is naturally typed.* -- Simon Thompson
##
## Basic math routines for Nim.
@@ -237,7 +235,6 @@ proc cumsummed*[T](x: openArray[T]): seq[T] =
## See also:
## * `sum proc <#sum,openArray[T]>`_
## * `cumsum proc <#cumsum,openArray[T]>`_ for the in-place version
## * `cumsummed proc <#cumsummed,openArray[T]>`_
runnableExamples:
let a = [1, 2, 3, 4]
doAssert cumsummed(a) == @[1, 3, 6, 10]

View File

@@ -7,8 +7,6 @@
# distribution, for details about the copyright.
#
## :Author: Nim contributors
##
## The system module defines several common functions for working with strings,
## such as:
## * ``$`` for converting other data-types to strings