summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2013-04-03 15:52:41 +0200
committerStefan Kögl <stefan@skoegl.net>2013-04-03 15:52:41 +0200
commit0b6907a6d99249ec780651a99156c9b75b1ae13f (patch)
treee05103318369d2a5e23176af5e1664412d77d375
parentf3e067281fbee0829b7bb2656bbef91dffc9146a (diff)
downloadpython-json-patch-0b6907a6d99249ec780651a99156c9b75b1ae13f.tar.gz
mention RFC 6902
-rw-r--r--README.md2
-rw-r--r--jsonpatch.py4
2 files changed, 2 insertions, 4 deletions
diff --git a/README.md b/README.md
index f251ec8..4aaecac 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@ Applying JSON Patches in Python
-------------------------------
Library to apply JSON Patches according to
-http://tools.ietf.org/html/draft-ietf-appsawg-json-patch-08
+[RFC 6902](http://tools.ietf.org/html/rfc6902)
See Sourcecode for Examples
diff --git a/jsonpatch.py b/jsonpatch.py
index a2f7973..57a2cfa 100644
--- a/jsonpatch.py
+++ b/jsonpatch.py
@@ -30,9 +30,7 @@
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
-""" Apply JSON-Patches (according to draft 08) """
-
-# http://tools.ietf.org/html/draft-ietf-appsawg-json-patch-05
+""" Apply JSON-Patches (RFC 6902) """
# Will be parsed by setup.py to determine package metadata
__author__ = 'Stefan Kögl <stefan@skoegl.net>'