standardized call-out blocks
[rrq/rrqforth.git] / adoc / p_2over.adoc
index 058bfdd0216af138231f67850522eb8b11b0f1a4..fcfc184e7d29dc82abfb53d6c2188873075978d7 100644 (file)
@@ -13,10 +13,8 @@ onto the top of the data stack. This is similar to <<p_over,OVER>> but
 working with cell pairs rather than single cells.
 
 ====
-.Word: 2OVER
-[caption='Definition concept {counter:exec}: ']
-----
-: 2OVER 3 PICK 3 PICK ;
-----
+.Definition concept for 2OVER
+****
+( v1 v2 v3 v4 -- v1 v2 v3 v4 v1 v2 ) : 2OVER 3 PICK 3 PICK ;
+****
 ====
-