diff options
author | Dan Gudmundsson <[email protected]> | 2012-03-29 12:14:21 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2012-03-29 12:14:21 +0200 |
commit | a7e1dafe23eb566c662d361e6dca192db9f816e5 (patch) | |
tree | 886078440eea5f347b962038ba92853d0ec3fc7b /lib/wx/src/gen/wxGridCellChoiceEditor.erl | |
parent | 8d5372dcb2aaed98063d9a9c74a052612ecfa3ca (diff) | |
download | otp-a7e1dafe23eb566c662d361e6dca192db9f816e5.tar.gz otp-a7e1dafe23eb566c662d361e6dca192db9f816e5.tar.bz2 otp-a7e1dafe23eb566c662d361e6dca192db9f816e5.zip |
[wx] Fix list in list in list specs
To many lists
Diffstat (limited to 'lib/wx/src/gen/wxGridCellChoiceEditor.erl')
-rw-r--r-- | lib/wx/src/gen/wxGridCellChoiceEditor.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wx/src/gen/wxGridCellChoiceEditor.erl b/lib/wx/src/gen/wxGridCellChoiceEditor.erl index 6f7d7ceffb..6b037e01b3 100644 --- a/lib/wx/src/gen/wxGridCellChoiceEditor.erl +++ b/lib/wx/src/gen/wxGridCellChoiceEditor.erl @@ -41,7 +41,7 @@ parent_class(_Class) -> erlang:error({badtype, ?MODULE}). -type wxGridCellChoiceEditor() :: wx:wx_object(). %% @equiv new(Choices, []) -spec new(Choices) -> wxGridCellChoiceEditor() when - Choices::[[unicode:chardata()]]. + Choices::[unicode:chardata()]. new(Choices) when is_list(Choices) -> @@ -49,7 +49,7 @@ new(Choices) %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxgridcellchoiceeditor.html#wxgridcellchoiceeditorwxgridcellchoiceeditor">external documentation</a>. -spec new(Choices, [Option]) -> wxGridCellChoiceEditor() when - Choices::[[unicode:chardata()]], + Choices::[unicode:chardata()], Option :: {allowOthers, boolean()}. new(Choices, Options) when is_list(Choices),is_list(Options) -> |