From 3a48eb9bc2cf60a73c162a8a7b80aa6d56dcafb4 Mon Sep 17 00:00:00 2001 From: Delaney Granizo-Mackenzie Date: Wed, 2 Jul 2014 11:03:17 -0400 Subject: [PATCH] Update zipline-0.6.2.md --- docs/release-notes/zipline-0.6.2.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/release-notes/zipline-0.6.2.md b/docs/release-notes/zipline-0.6.2.md index 9662f8f5..fb767344 100644 --- a/docs/release-notes/zipline-0.6.2.md +++ b/docs/release-notes/zipline-0.6.2.md @@ -90,10 +90,11 @@ > The record() function can now take positional args before the kwargs. > All original usage and functionality is the same, but now these > extra usages will work: - - - name = 'string' - - record( name, value, ... ) - - record( name, value1, 'name2', value2, name3=value3, name4=value4) + > + + name = 'string' + record( name, value, ... ) + record( name, value1, 'name2', value2, name3=value3, name4=value4 ) > The requirements are simply that the poritional args occur only before the > kwargs.