Skip to content

Commit

Permalink
Fix some punctation and formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarsten committed May 28, 2018
1 parent d282ee9 commit 2972b09
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions doc/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ VCL and bundled VMODs
---------------------

* ``return (fetch)`` is no longer allowed in ``vcl_hit {}``, use
``return (miss)`` instread. Note that ``return (fetch)`` has been
``return (miss)`` instead. Note that ``return (fetch)`` has been
deprecated since 4.0.

* Fix behaviour of restarts to how it was originally intended:
Expand Down Expand Up @@ -132,11 +132,11 @@ VCL and bundled VMODs

* ``beresp.backend.ip`` is retired as of VCL 4.1.

* workspace overflows in ``std.log()`` now trigger a VCL failure
* workspace overflows in ``std.log()`` now trigger a VCL failure.

* workspace overflows in ``std.syslog()`` are ignored
* workspace overflows in ``std.syslog()`` are ignored.

* added ``return(restart)`` from ``vcl_recv{}``
* added ``return(restart)`` from ``vcl_recv{}``.

* The ``alg`` argument of the ``shard`` director ``.reconfigure()``
method has been removed - the consistent hashing ring is now always
Expand Down Expand Up @@ -209,7 +209,7 @@ VCL and bundled VMODs
now need to be named.

* Integers in VCL are now 64 bits wide across all platforms
(implemented as ``int64_t`` C type) , but due to implementation
(implemented as ``int64_t`` C type), but due to implementation
specifics of the VCL compiler (VCC), integer literals' precision is
limited to that of a VCL real (``double`` C type, roughly 53 bits).

Expand All @@ -225,11 +225,11 @@ Logging / statistics
--------------------

* Turned off PROXY protocol debugging by default, can be enabled with
the ``protocol`` debug flag
the ``protocol`` debug flag.

* added ``cache_hit_grace`` statistics counter
* added ``cache_hit_grace`` statistics counter.

* added ``n_lru_limited`` counter
* added ``n_lru_limited`` counter.

* The byte counters in ReqAcct now show the numbers reported from the
operating system rather than what we anticipated to send. This will give
Expand Down Expand Up @@ -285,7 +285,7 @@ C APIs (for vmod and utility authors)
``manual``, the auto-SYNOPSIS is left out, for VMOD authors who
prefer to write their own.

* All varnish internal ``SHA256*`` symbols have been renamed to
* All Varnish internal ``SHA256*`` symbols have been renamed to
``VSHA256*``

* libvarnish now has ``VNUM_duration()`` to convert from a VCL
Expand All @@ -300,7 +300,7 @@ C APIs (for vmod and utility authors)
* ``__unused`` -> ``v_unused_``
* ``__attribute__((__noreturn__)`` -> ``v_noreturn_``

* ENUMs are now fixed pointers per vcl
* ENUMs are now fixed pointers per vcl.

* Added ``VRT_blob()`` utility function to create a blob as a copy
of some chunk of data on the workspace.
Expand All @@ -313,13 +313,13 @@ Other changes relevant for VMODs
--------------------------------

* ``PRIV_*`` function/method arguments are not excluded from
auto-generated vmod documentation
auto-generated vmod documentation.

Fixed bugs which may influence VCL behaviour
--------------------------------------------

* After reusing a backend connection fails once, a fresh connection
will be opened (2135)
will be opened (2135_).

.. _2135: https://github.com/varnishcache/varnish-cache/pull/2135

Expand Down

0 comments on commit 2972b09

Please sign in to comment.