Fix header inconsistencies in documentation (#11071)

This commit is contained in:
Zed
2019-04-23 08:40:20 +02:00
committed by Andreas Rumpf
parent 4f93669754
commit 3b4952da94
17 changed files with 95 additions and 98 deletions

View File

@@ -14,7 +14,7 @@
## `db_postgres <db_postgres.html>`_.
##
## Parameter substitution
## ----------------------
## ======================
##
## All ``db_*`` modules support the same form of parameter substitution.
## That is, using the ``?`` (question mark) to signify the place where a
@@ -25,10 +25,10 @@
##
##
## Examples
## --------
## ========
##
## Opening a connection to a database
## ==================================
## ----------------------------------
##
## .. code-block:: Nim
## import db_mysql
@@ -36,7 +36,7 @@
## db.close()
##
## Creating a table
## ================
## ----------------
##
## .. code-block:: Nim
## db.exec(sql"DROP TABLE IF EXISTS myTable")
@@ -45,14 +45,14 @@
## name varchar(50) not null)"""))
##
## Inserting data
## ==============
## --------------
##
## .. code-block:: Nim
## db.exec(sql"INSERT INTO myTable (id, name) VALUES (0, ?)",
## "Dominik")
##
## Larger example
## ==============
## --------------
##
## .. code-block:: Nim
##

View File

@@ -20,7 +20,7 @@
## `db_mysql <db_mysql.html>`_.
##
## Parameter substitution
## ----------------------
## ======================
##
## All ``db_*`` modules support the same form of parameter substitution.
## That is, using the ``?`` (question mark) to signify the place where a
@@ -31,10 +31,10 @@
##
##
## Examples
## --------
## ========
##
## Opening a connection to a database
## ==================================
## ----------------------------------
##
## .. code-block:: Nim
## import db_odbc
@@ -42,7 +42,7 @@
## db.close()
##
## Creating a table
## ================
## ----------------
##
## .. code-block:: Nim
## db.exec(sql"DROP TABLE IF EXISTS myTable")
@@ -51,14 +51,14 @@
## name varchar(50) not null)"""))
##
## Inserting data
## ==============
## --------------
##
## .. code-block:: Nim
## db.exec(sql"INSERT INTO myTable (id, name) VALUES (0, ?)",
## "Andreas")
##
## Large example
## =============
## -------------
##
## .. code-block:: Nim
##

View File

@@ -14,7 +14,7 @@
## `db_mysql <db_mysql.html>`_.
##
## Parameter substitution
## ----------------------
## ======================
##
## All ``db_*`` modules support the same form of parameter substitution.
## That is, using the ``?`` (question mark) to signify the place where a
@@ -38,10 +38,10 @@
## 3)
##
## Examples
## --------
## ========
##
## Opening a connection to a database
## ==================================
## ----------------------------------
##
## .. code-block:: Nim
## import db_postgres
@@ -49,7 +49,7 @@
## db.close()
##
## Creating a table
## ================
## ----------------
##
## .. code-block:: Nim
## db.exec(sql"DROP TABLE IF EXISTS myTable")
@@ -58,7 +58,7 @@
## name varchar(50) not null)"""))
##
## Inserting data
## ==============
## --------------
##
## .. code-block:: Nim
## db.exec(sql"INSERT INTO myTable (id, name) VALUES (0, ?)",

View File

@@ -14,7 +14,7 @@
## `db_mysql <db_mysql.html>`_.
##
## Parameter substitution
## ----------------------
## ======================
##
## All ``db_*`` modules support the same form of parameter substitution.
## That is, using the ``?`` (question mark) to signify the place where a
@@ -24,10 +24,10 @@
## sql"INSERT INTO myTable (colA, colB, colC) VALUES (?, ?, ?)"
##
## Examples
## --------
## ========
##
## Opening a connection to a database
## ==================================
## ----------------------------------
##
## .. code-block:: Nim
## import db_sqlite
@@ -35,7 +35,7 @@
## db.close()
##
## Creating a table
## ================
## ----------------
##
## .. code-block:: Nim
## db.exec(sql"DROP TABLE IF EXISTS myTable")
@@ -44,14 +44,14 @@
## name varchar(50) not null)"""))
##
## Inserting data
## ==============
## --------------
##
## .. code-block:: Nim
## db.exec(sql"INSERT INTO myTable (id, name) VALUES (0, ?)",
## "Jack")
##
## Larger example
## ==============
## --------------
##
## .. code-block:: nim
##

View File

@@ -50,7 +50,7 @@
## proc loadGame(name: string): Future[Game] {.async.}
##
## JavaScript compatibility
## ~~~~~~~~~~~~~~~~~~~~~~~~~
## ========================
##
## Nim currently generates `async/await` JavaScript code which is supported in modern
## EcmaScript and most modern versions of browsers, Node.js and Electron.

View File

@@ -65,7 +65,7 @@
## error), if there is no error however it returns the value of the future.
##
## Asynchronous procedures
## -----------------------
## =======================
##
## Asynchronous procedures remove the pain of working with callbacks. They do
## this by allowing you to write asynchronous code the same way as you would
@@ -99,7 +99,7 @@
## exceptions in async procs.
##
## Handling Exceptions
## ~~~~~~~~~~~~~~~~~~~
## -------------------
##
## The most reliable way to handle exceptions is to use ``yield`` on a future
## then check the future's ``failed`` property. For example:
@@ -125,7 +125,7 @@
##
##
## Discarding futures
## ------------------
## ==================
##
## Futures should **never** be discarded. This is because they may contain
## errors. If you do not care for the result of a Future then you should
@@ -134,14 +134,14 @@
## ``waitFor`` for that purpose.
##
## Examples
## --------
## ========
##
## For examples take a look at the documentation for the modules implementing
## asynchronous IO. A good place to start is the
## `asyncnet module <asyncnet.html>`_.
##
## Limitations/Bugs
## ----------------
## ================
##
## * The effect system (``raises: []``) does not work with async procedures.
@@ -1824,4 +1824,4 @@ proc setEvent*(ev: AsyncEvent) {.deprecated.} =
## Set event ``ev`` to signaled state.
##
## **Deprecated since v0.18.0:** Use ``trigger`` instead.
ev.trigger()
ev.trigger()

View File

@@ -16,7 +16,7 @@
## * Navigation through the FTP server's directories.
##
## Connecting to an FTP server
## ------------------------
## ===========================
##
## In order to begin any sort of transfer of files you must first
## connect to an FTP server. You can do so with the ``connect`` procedure.
@@ -34,7 +34,7 @@
## client will be connected after the ``await ftp.connect()`` call.
##
## Uploading a new file
## --------------------
## ====================
##
## After a connection is made you can use the ``store`` procedure to upload
## a new file to the FTP server. Make sure to check you are in the correct
@@ -53,7 +53,7 @@
## waitFor(main())
##
## Checking the progress of a file transfer
## ----------------------------------------
## ========================================
##
## The progress of either a file upload or a file download can be checked
## by specifying a ``onProgressChanged`` procedure to the ``store`` or

View File

@@ -14,9 +14,8 @@
## application you should use a reverse proxy (for example nginx) instead of
## allowing users to connect directly to this server.
##
##
## Basic usage
## -----------
## ===========
##
## This example will create an HTTP server on port 8080. The server will
## respond to all requests with a ``200 OK`` response code and "Hello World"

View File

@@ -7,8 +7,6 @@
# distribution, for details about the copyright.
#
## AsyncMacro
## *************
## `asyncdispatch` module depends on the `asyncmacro` module to work properly.
import macros, strutils, asyncfutures

View File

@@ -11,7 +11,7 @@
## asynchronous dispatcher defined in the ``asyncdispatch`` module.
##
## Asynchronous IO in Nim
## ----------------------
## ======================
##
## Async IO in Nim consists of multiple layers (from highest to lowest):
##
@@ -49,7 +49,7 @@
## over all the layers, providing some extra features such as buffering.
##
## SSL
## ----
## ===
##
## SSL can be enabled by compiling with the ``-d:ssl`` flag.
##
@@ -58,10 +58,10 @@
## the newly created SSL context to get an SSL socket.
##
## Examples
## --------
## ========
##
## Chat server
## ^^^^^^^^^^^
## -----------
##
## The following example demonstrates a simple chat server.
##

View File

@@ -15,7 +15,6 @@
## bytes (i.e., a total of 24 bits) can therefore be represented by
## four 6-bit Base64 digits.
##
##
## Basic usage
## ===========
##

View File

@@ -12,10 +12,10 @@
## Windows ``LoadLibrary``.
##
## Examples
## --------
## ========
##
## Loading a simple C function
## ^^^^^^^^^^^^^^^^^^^^^^^^^^^
## ---------------------------
##
## The following example demonstrates loading a function called 'greet'
## from a library that is determined at runtime based upon a language choice.

View File

@@ -16,7 +16,8 @@
## generator. Each commonly used HTML tag has a corresponding macro
## that generates a string with its HTML representation.
##
## Example:
## Examples
## ========
##
## .. code-block:: Nim
## var nim = "Nim"

View File

@@ -12,48 +12,46 @@
## format, but much more powerful, as it is not a line based parser. String
## literals, raw string literals and triple quoted string literals are supported
## as in the Nim programming language.
## This is an example of how a configuration file may look like:
##
## Example of how a configuration file may look like:
##
## .. include:: ../../doc/mytest.cfg
## :literal:
##
##[ Here is an example of how to use the configuration file parser:
.. code-block:: nim
import
os, parsecfg, strutils, streams
var f = newFileStream(paramStr(1), fmRead)
if f != nil:
var p: CfgParser
open(p, f, paramStr(1))
while true:
var e = next(p)
case e.kind
of cfgEof: break
of cfgSectionStart: ## a ``[section]`` has been parsed
echo("new section: " & e.section)
of cfgKeyValuePair:
echo("key-value-pair: " & e.key & ": " & e.value)
of cfgOption:
echo("command: " & e.key & ": " & e.value)
of cfgError:
echo(e.msg)
close(p)
else:
echo("cannot open: " & paramStr(1))
]##
## Here is an example of how to use the configuration file parser:
##
## .. code-block:: nim
##
## import os, parsecfg, strutils, streams
##
## var f = newFileStream(paramStr(1), fmRead)
## if f != nil:
## var p: CfgParser
## open(p, f, paramStr(1))
## while true:
## var e = next(p)
## case e.kind
## of cfgEof: break
## of cfgSectionStart: ## a ``[section]`` has been parsed
## echo("new section: " & e.section)
## of cfgKeyValuePair:
## echo("key-value-pair: " & e.key & ": " & e.value)
## of cfgOption:
## echo("command: " & e.key & ": " & e.value)
## of cfgError:
## echo(e.msg)
## close(p)
## else:
## echo("cannot open: " & paramStr(1))
##
##
## Examples
## --------
## ========
##
## This is an example of a configuration file.
## Configuration file example
## --------------------------
##
## ::
## .. code-block:: nim
##
## charset = "utf-8"
## [Package]
@@ -64,8 +62,8 @@
## qq = "10214028"
## email = "lihaifeng@wxm.com"
##
## Creating a configuration file.
## ==============================
## Creating a configuration file
## -----------------------------
## .. code-block:: nim
##
## import parsecfg
@@ -78,8 +76,8 @@
## dict.setSectionKey("Author","email","lihaifeng@wxm.com")
## dict.writeConfig("config.ini")
##
## Reading a configuration file.
## =============================
## Reading a configuration file
## ----------------------------
## .. code-block:: nim
##
## import parsecfg
@@ -92,8 +90,8 @@
## var email = dict.getSectionValue("Author","email")
## echo pname & "\n" & name & "\n" & qq & "\n" & email
##
## Modifying a configuration file.
## ===============================
## Modifying a configuration file
## ------------------------------
## .. code-block:: nim
##
## import parsecfg
@@ -101,8 +99,8 @@
## dict.setSectionKey("Author","name","lhf")
## dict.writeConfig("config.ini")
##
## Deleting a section key in a configuration file.
## ===============================================
## Deleting a section key in a configuration file
## ----------------------------------------------
## .. code-block:: nim
##
## import parsecfg

View File

@@ -17,7 +17,8 @@
resolution used by ``getTime()`` depends on the platform and backend
(JS is limited to millisecond precision).
Examples:
Examples
========
.. code-block:: nim
import times, os
@@ -38,7 +39,7 @@
echo "One month from now : ", now() + 1.months
Parsing and Formatting Dates
----------------------------
============================
The ``DateTime`` type can be parsed and formatted using the different
``parse`` and ``format`` procedures.
@@ -128,7 +129,7 @@
only for years in the range 1..9999).
Duration vs TimeInterval
----------------------------
============================
The ``times`` module exports two similiar types that are both used to
represent some amount of time: `Duration <#Duration>`_ and
`TimeInterval <#TimeInterval>`_.
@@ -137,7 +138,7 @@
needed).
Duration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
----------------------------
A ``Duration`` represents a duration of time stored as seconds and
nanoseconds. A ``Duration`` is always fully normalized, so
``initDuration(hours = 1)`` and ``initDuration(minutes = 60)`` are equivilant.
@@ -147,7 +148,7 @@
is more performant and easier to understand it should generally prefered.
TimeInterval
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
----------------------------
A ``TimeInterval`` represents some amount of time expressed in calendar
units, for example "1 year and 2 days". Since some units cannot be
normalized (the length of a year is different for leap years for example),
@@ -164,7 +165,7 @@
``Duration`` doesn't have.
How long is a day?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
----------------------------
It should be especially noted that the handling of days differs between
``TimeInterval`` and ``Duration``. The ``Duration`` type always treats a day
as exactly 86400 seconds. For ``TimeInterval``, it's more complex.

View File

@@ -57,8 +57,8 @@
## # Run suites starting with 'bug #' and standalone tests starting with '#'
## nim c -r test 'bug #*::' '::#*'
##
## Example
## -------
## Examples
## ========
##
## .. code:: nim
##

View File

@@ -19,7 +19,8 @@
## to prevent race conditions and improves efficiency. See `the manual for
## details of this memory model <manual.html#threads>`_.
##
## Example:
## Examples
## ========
##
## .. code-block:: Nim
##
@@ -328,7 +329,7 @@ else:
proc createThread*(t: var Thread[void], tp: proc () {.thread, nimcall.}) =
createThread[void](t, tp)
## we need to cache current threadId to not perform syscall all the time
# we need to cache current threadId to not perform syscall all the time
var threadId {.threadvar.}: int
when defined(windows):