# HG changeset patch # User Carnë Draug # Date 1460461325 -3600 # Node ID 4b66ceee5c4c324fa5431ae776b8018e5dae83e7 # Parent 09a06ed4d1ba3ad0b58fcf0e170d38623b7d0711 doc: fix on manual the syntax to empty elements from cell array. diff -r 09a06ed4d1ba -r 4b66ceee5c4c doc/interpreter/container.txi --- a/doc/interpreter/container.txi Mon Apr 04 14:49:23 2016 -0400 +++ b/doc/interpreter/container.txi Tue Apr 12 12:42:05 2016 +0100 @@ -822,7 +822,7 @@ @example @group x = @{"1", "2"; "3", "4"@}; -x@{1, :@} = [] +x(1, :) = @{[]@} @result{} x = @{ [1,1] = [](0x0)