diff options
author | Dan Gudmundsson <[email protected]> | 2012-03-30 08:54:18 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2012-03-30 08:54:18 +0200 |
commit | dff1bdcc40ef0ee723bef06f0fe9221a979507cb (patch) | |
tree | dea7c61a818160ccbf2ecf55483f18898c844f8e /lib/wx/src/gen/wxGridCellChoiceEditor.erl | |
parent | 6a3780b940c9406a48df6d55a0623e6d01892ac4 (diff) | |
parent | a7e1dafe23eb566c662d361e6dca192db9f816e5 (diff) | |
download | otp-dff1bdcc40ef0ee723bef06f0fe9221a979507cb.tar.gz otp-dff1bdcc40ef0ee723bef06f0fe9221a979507cb.tar.bz2 otp-dff1bdcc40ef0ee723bef06f0fe9221a979507cb.zip |
Merge branch 'dgud/wx/misc-improvements/OTP-9947' into maint
* dgud/wx/misc-improvements/OTP-9947:
[wx] Fix list in list in list specs
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) -> |