diff options
| author | Tim Graham <timograham@gmail.com> | 2013-07-19 02:19:24 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-07-19 02:19:24 -0700 |
| commit | 46699862289528f2bf0ff6c299c66b75bf4f37ce (patch) | |
| tree | 68f3f74d15350c247e96b6d5f5d9ec87d6a119ef /docs/topics | |
| parent | 2fc6c9472cd25910f978fe1d18de5c350370f901 (diff) | |
| parent | aa41eb9b8b2a12ffcaf81e48e3af331551ffa9e8 (diff) | |
Merge pull request #1378 from loic/docs
Fixed #20772 -- Fixed minor typo in form media docs.
Diffstat (limited to 'docs/topics')
| -rw-r--r-- | docs/topics/forms/media.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/forms/media.txt b/docs/topics/forms/media.txt index 7c7c0310ec..09184fe15f 100644 --- a/docs/topics/forms/media.txt +++ b/docs/topics/forms/media.txt @@ -262,7 +262,7 @@ operator to filter out a medium of interest. For example:: <script type="text/javascript" src="http://static.example.com/animations.js"></script> <script type="text/javascript" src="http://static.example.com/actions.js"></script> - >>> print(w.media)['css'] + >>> print(w.media['css']) <link href="http://static.example.com/pretty.css" type="text/css" media="all" rel="stylesheet" /> When you use the subscript operator, the value that is returned is a |
