X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=blobdiff_plain;f=extra%2Frosetta-code%2Fknapsack%2Fknapsack.factor;h=83417eae3f5280fe1d5818241c971c7639a99f21;hp=ec13ff186b1c0f4df46657748e46abb6703f3237;hb=6d4293b5822d769619f66e46e64b704ddfe41b43;hpb=b7bb69b178712e9d135362ebd6efa69c9b8371ba diff --git a/extra/rosetta-code/knapsack/knapsack.factor b/extra/rosetta-code/knapsack/knapsack.factor index ec13ff186b..83417eae3f 100644 --- a/extra/rosetta-code/knapsack/knapsack.factor +++ b/extra/rosetta-code/knapsack/knapsack.factor @@ -24,7 +24,7 @@ IN: rosetta-code.knapsack ! Which items does the tourist carry in his knapsack so that ! their total weight does not exceed 400 dag [4 kg], and their -! total value is maximised? +! total value is maximized? TUPLE: item name weight value ;