diff options
| author | Tom Christie | 2014-12-22 07:55:24 +0000 |
|---|---|---|
| committer | Tom Christie | 2014-12-22 07:55:24 +0000 |
| commit | 201e7eaa4b468c68cbd716f1cdacc31d8908deaf (patch) | |
| tree | b8d795a5a4ce480f7b756b7be8cc8cbb21843e13 | |
| parent | e4c7c10b0083ad5da27a494714494283de2f1895 (diff) | |
| parent | 35696748603665526be7947e918d41856644ec52 (diff) | |
| download | django-rest-framework-201e7eaa4b468c68cbd716f1cdacc31d8908deaf.tar.bz2 | |
Merge pull request #2337 from BWStearns/master
use of double quotes broke the code highlighting.
| -rw-r--r-- | docs/api-guide/fields.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/fields.md b/docs/api-guide/fields.md index f06db56c..946e355d 100644 --- a/docs/api-guide/fields.md +++ b/docs/api-guide/fields.md @@ -480,7 +480,7 @@ Let's look at an example of serializing a class that represents an RGB color val class ColorField(serializers.Field): """ - Color objects are serialized into "rgb(#, #, #)" notation. + Color objects are serialized into 'rgb(#, #, #)' notation. """ def to_representation(self, obj): return "rgb(%d, %d, %d)" % (obj.red, obj.green, obj.blue) |
