@@ -299,7 +299,7 @@ Additionally _Moneta_ also supports static factory methods on the types directly
299299[source,java]
300300.Creating instances of +FastMoney+ using the +MonetaryAmounts+ singleton: 
301301-------------------------------------------- 
302- FastMoney m = FastMoney.of("USD",  200.20); 
302+ FastMoney m = FastMoney.of(200.20, "USD" ); 
303303-------------------------------------------- 
304304
305305Creation of +Money+ instances is similar:
@@ -308,7 +308,7 @@ Creation of +Money+ instances is similar:
308308.Creating instances of +Money+: 
309309-------------------------------------------- 
310310Money m1 = Monetary.getAmountFactory(Money.class).setCurrency("USD").setNumber(200.20).create(); 
311- Money m2 = Money.of("USD",  200.20); 
311+ Money m2 = Money.of(200.20, "USD" ); 
312312-------------------------------------------- 
313313
314314===== Configuring Instances of Money
@@ -321,7 +321,7 @@ explicitly by passing a +MathContext+ as part of a +MonetaryContext+:
321321[source,java]
322322.Creating instances of +Money+ configuring the +MathContext+ to be used. 
323323-------------------------------------------- 
324- Money money = Money.of("CHF", 200 , MonetaryContextBuilder.create().set(MathContext.DECIMAL128).build()); 
324+ Money money = Money.of(200,  "CHF", MonetaryContextBuilder.create().set(MathContext.DECIMAL128).build()); 
325325-------------------------------------------- 
326326
327327Using the JSR's main API allows to achieve the same as follows:
0 commit comments