Question: nested convert to set

I am doing some error I dont know where in the usage

T := [[1, 2], [3, 4]];
convert(T, set, nested);

{[1, 2], [3, 4]}

But I expected internal lists also to be converted to sets like {{1,2},{3,4}}  my list may be a big list just taken a example

This a simple question I know i tried somewhere i am going wrong please help

what i am trying to do is 

n:=8;

k:=2;

C:=choose(n,k);
convert(C,set,nested);
not making all nested all as set as mentioned in the simple example.

some simple program and fast kind help

Please Wait...