Bug 693888

Summary: Indexes in example code are reversed
Product: Red Hat Enterprise MRG Reporter: Justin Ross <jross>
Component: Messaging_Programming_ReferenceAssignee: Alison Young <alyoung>
Status: CLOSED CURRENTRELEASE QA Contact: ecs-bugs
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 1.3CC: jneedle
Target Milestone: 2.0Keywords: Documentation
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2011-06-24 02:58:24 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:

Description Justin Ross 2011-04-05 20:14:29 UTC
The example contains indexes (3, 4) that are reversed.

16:04  * xkahn reads: http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_MRG/1.3/html-single/Programming_in_Apache_Qpid/index.html
16:04 < xkahn> Python example: 2.2. A Simple Messaging Program in Python
16:04 < xkahn>   sender = session.sender(address)  «3»  
16:04 < xkahn>   receiver = session.receiver(address)  «4»
16:05 < xkahn> «3» Creates a receiver that receives messages from the given address. 
16:05 < xkahn> «4» Creates a sender that sends to the given address. 
16:05 < xkahn> Pretty sure that isn't right.