For these examples, we'll assume your job's ID is 100234.5.
 
-You can run =condor_q 100234.5 -af:r requirements= to examine a queued job's requirements.  When making a change, copy-and-paste the whole thing and sandwich it between single quotes (='=), as in the example below.
+You can run =condor_q 100234.5 -af:r requirements= to examine a queued job's requirements.  When making a change, copy-and-paste the whole thing and sandwich it between single quotes (='=), as in the example below, which assumes your annex is named MyFirstAnnex.
 
 {term}
 $ condor_q 100234.5 -af:r requirements
-(TARGET.PoolName == "CHTC") && (Target.OpSysMajorVer == 6) || (Target.OpSysMajorVer == 7)) && (OpSysName =!= "Debian") && (TARGET.Arch == "X86_64") && (TARGET.OpSys == "LINUX") && (TARGET.Disk >= RequestDisk) && (TARGET.Memory >= RequestMemory) && (TARGET.HasFileTransfer)
-$ condor_qedit 100234.5 requirements '(TARGET.AnnexName == MyFirstAnnex || TARGET.PoolName == "CHTC") && (Target.OpSysMajorVer =?= 6 || (Target.OpSysMajorVer =?= 7) ) && (OpSysName =!= "Debian") && (TARGET.Arch == "X86_64") && (TARGET.OpSys == "LINUX") && (TARGET.Disk >= RequestDisk) && (TARGET.Memory >= RequestMemory) && (TARGET.HasFileTransfer)'
+(TARGET.PoolName == "CHTC") && ((Target.OpSysMajorVer == 6) || (Target.OpSysMajorVer == 7)) && (OpSysName =!= "Debian") && (TARGET.Arch == "X86_64") && (TARGET.OpSys == "LINUX") && (TARGET.Disk >= RequestDisk) && (TARGET.Memory >= RequestMemory) && (TARGET.HasFileTransfer)
+$ condor_qedit 100234.5 requirements '(TARGET.AnnexName == "MyFirstAnnex" || TARGET.PoolName == "CHTC") && ((Target.OpSysMajorVer =?= 6) || (Target.OpSysMajorVer =?= 7)) && (OpSysName =!= "Debian") && (TARGET.Arch == "X86_64") && (TARGET.OpSys == "LINUX") && (TARGET.Disk >= RequestDisk) && (TARGET.Memory >= RequestMemory) && (TARGET.HasFileTransfer)'
 {endterm}
 
 Execute the following commands to set =MayUseAWS= and =WantFlocking= as required.  (Note that when editing a job in the queue, these attribute names are _not_ preceded by a plus ('=+=') sign.)  A reminder: this means these jobs will flock!  For now, you shouldn't use =condor_annex= if you don't want your jobs flocking.